None
**Instruments Affected**: NIRCam
This is the validation notebook that displays the regression tests for the NIRCam instrument in the JWST calibration pipeline. This notebook runs and displays the regression tests that are performed as a part of the normal software continuous integration process. For more information on the pipeline visit the links below.
Pipeline description: https://jwst-pipeline.readthedocs.io/en/latest/index.html
Pipeline code: https://github.com/spacetelescope/jwst
JWST regression tests are located in the regtest folder of the pipeline within the GitHub repository.
These are terms or acronymns used in this notebook that may not be known a general audience.
JWST: James Webb Space Telescope
NIRCam: Near-Infrared Camera
Regression testing is a software testing method which checks if the pipeline step produces the expected outcome by comparing an input file with a truth file. Truth files for testing are stored in Artifactory.
Data used for regression tests is stored in Artifactory, and consists of a mix of simulated and ground testing data for the different instruments and modes.
import tempfile
import os
import pytest
import jwst
from IPython.display import IFrame
from IPython.core.display import HTML
Here we define any convenience functions to help with running the unit tests.
print("Testing JWST Pipeline {}".format(jwst.__version__))
jwst_dir = os.path.dirname(jwst.__file__)
regtest = os.path.join(jwst_dir, 'regtest')
associations = os.path.join(jwst_dir, 'associations')
datamodels = os.path.join(jwst_dir, 'datamodels')
stpipe = os.path.join(jwst_dir, 'stpipe')
with tempfile.TemporaryDirectory() as tmpdir:
outdir = os.path.join(tmpdir, 'regtest_report.html')
!pytest --bigdata {regtest} -k 'test_nircam' -v --ignore={associations} --ignore={datamodels} --ignore={stpipe} --html={outdir} --self-contained-html
with open(os.path.join(tmpdir, "regtest_report.html")) as report_file:
html_report = "".join(report_file.readlines())
Testing JWST Pipeline 1.3.1 ============================= test session starts ============================== platform linux -- Python 3.9.7, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 -- /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/bin/python cachedir: .pytest_cache metadata: {'Python': '3.9.7', 'Platform': 'Linux-3.10.0-1160.41.1.el7.x86_64-x86_64-with-glibc2.17', 'Packages': {'pytest': '6.2.5', 'py': '1.10.0', 'pluggy': '1.0.0'}, 'Plugins': {'asdf': '2.8.1', 'metadata': '1.11.0', 'jwst': '1.3.1', 'html': '3.1.1', 'ci-watson': '0.5'}, 'BUILD_NUMBER': '94', 'BUILD_ID': '94', 'BUILD_URL': 'https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/94/', 'NODE_NAME': 'jwcalibdev.stsci.edu', 'JOB_NAME': 'Notebooks/jwst_validation_notebooks_spacetelescope', 'BUILD_TAG': 'jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-94', 'EXECUTOR_NUMBER': '28', 'JENKINS_URL': 'https://plwishmaster.stsci.edu:8081/', 'WORKSPACE': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope', 'GIT_COMMIT': '334866f90b8270be95b73987c45dfaa05c5a03c0', 'GIT_URL': 'https://github.com/spacetelescope/jwst_validation_notebooks', 'GIT_BRANCH': 'origin/master'} rootdir: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope plugins: asdf-2.8.1, metadata-1.11.0, jwst-1.3.1, html-3.1.1, ci-watson-0.5 collected 469 items / 412 deselected / 57 selected ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002001_01101_00001] ERROR [ 1%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002003_01101_00009] ERROR [ 3%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002004_01101_00013] ERROR [ 5%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] PASSED [ 7%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] PASSED [ 8%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] PASSED [ 10%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] PASSED [ 12%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] PASSED [ 14%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] PASSED [ 15%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] PASSED [ 17%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] PASSED [ 19%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] PASSED [ 21%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] PASSED [ 22%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] PASSED [ 24%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] PASSED [ 26%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] PASSED [ 28%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] PASSED [ 29%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] PASSED [ 31%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] PASSED [ 33%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] PASSED [ 35%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] PASSED [ 36%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] PASSED [ 38%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] PASSED [ 40%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] PASSED [ 42%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] PASSED [ 43%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] PASSED [ 45%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs PASSED [ 47%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg ERROR [ 49%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3[i2d] ERROR [ 50%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog ERROR [ 52%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segm ERROR [ 54%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile ERROR [ 56%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED [ 57%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target ERROR [ 57%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] PASSED [ 59%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] PASSED [ 61%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] PASSED [ 63%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rate] FAILED [ 64%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rateints] FAILED [ 66%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[trapsfilled] PASSED [ 68%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] PASSED [ 70%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] PASSED [ 71%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] PASSED [ 73%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] PASSED [ 75%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] PASSED [ 77%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] PASSED [ 78%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints PASSED [ 80%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt PASSED [ 82%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing SKIPPED [ 84%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] PASSED [ 85%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] PASSED [ 87%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot PASSED [ 89%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing SKIPPED [ 91%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nicam_wfsimage_noextras PASSED [ 92%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] PASSED [ 94%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] PASSED [ 96%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] PASSED [ 98%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] PASSED [100%] ==================================== ERRORS ==================================== _____ ERROR at setup of test_tweakreg_with_gaia[jw01069002001_01101_00001] _____ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0') @pytest.fixture(scope="module") def run_image3pipeline(rtdata_module, jail): ''' Run calwebb_image3 on NIRCam imaging and align to gaia ''' collect_pipeline_cfgs("config") rtdata = rtdata_module rtdata.get_asn("nircam/image/level3_F277W_3img_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.align_to_gaia=True", "--steps.tweakreg.save_results=True", "--steps.tweakreg.output_use_model=True" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py:23: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError ---------------------------- Captured stdout setup ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- ---------------------------- Captured stderr setup ----------------------------- 2021-10-02 10:25:38,445 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0018.asdf 2021-10-02 10:25:38,476 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.444, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:25:39,355 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:25:39,586 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:25:39,587 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:25:39,588 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:25:39,589 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:25:39,590 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:25:39,591 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:25:39,592 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:25:39,592 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:25:39,592 - stpipe - INFO - OS: Linux 2021-10-02 10:25:39,743 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/level3_F277W_3img_asn.json',). 2021-10-02 10:25:39,748 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:25:39,979 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw01069002001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:25:39,997 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:25:39,998 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:25:39,999 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:25:40,001 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:25:40,702 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-10-02 10:25:40,703 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-10-02 10:25:45,522 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002001_01101_00001_nrca5_cal.fits. 2021-10-02 10:25:50,558 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002003_01101_00009_nrca5_cal.fits. 2021-10-02 10:25:55,051 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002004_01101_00013_nrca5_cal.fits. 2021-10-02 10:25:55,061 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,062 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-10-02 10:25:55,062 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-10-02 10:25:55,085 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002001_01101_00001_nrca5_cal': 2021-10-02 10:25:55,085 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002001_01101_00001_nrca5_cal 2021-10-02 10:25:55,105 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002003_01101_00009_nrca5_cal': 2021-10-02 10:25:55,105 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002003_01101_00009_nrca5_cal 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002004_01101_00013_nrca5_cal': 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002004_01101_00013_nrca5_cal 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,137 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:25:55.136959 2021-10-02 10:25:55,137 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2021-10-02 10:25:55,137 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,345 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image 2021-10-02 10:25:55,349 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,546 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. 2021-10-02 10:25:55,546 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:25:55,547 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. 2021-10-02 10:25:55,548 - stpipe.Image3Pipeline.tweakreg - INFO - Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... 2021-10-02 10:25:55,548 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0270502 FIT MAE: 0.0197936 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 30 objects. 2021-10-02 10:25:55,593 - stpipe.Image3Pipeline.tweakreg - INFO - Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,636 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,773 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. 2021-10-02 10:25:55,773 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:25:55,774 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. 2021-10-02 10:25:55,775 - stpipe.Image3Pipeline.tweakreg - INFO - Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... 2021-10-02 10:25:55,775 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:25:55,777 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.100896 FIT MAE: 0.0550174 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 26 objects. 2021-10-02 10:25:55,819 - stpipe.Image3Pipeline.tweakreg - INFO - Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:25:55.820095 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.683136 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,044 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,044 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:26:03.044536 2021-10-02 10:26:03,045 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2021-10-02 10:26:03,045 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,235 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: 987654' to the reference catalog. 2021-10-02 10:26:03,387 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. 2021-10-02 10:26:03,387 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:26:03,406 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. 2021-10-02 10:26:03,408 - stpipe.Image3Pipeline.tweakreg - INFO - Found 250 matches for 'GROUP ID: 987654'... 2021-10-02 10:26:03,408 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: 987654: 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.226815 FIT MAE: 0.110685 2021-10-02 10:26:03,412 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 240 objects. 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:26:03.510173 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.465637 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,785 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002001_01101_00001_nrca5_tweakreg.fits 2021-10-02 10:26:04,225 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002003_01101_00009_nrca5_tweakreg.fits 2021-10-02 10:26:04,422 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002004_01101_00013_nrca5_tweakreg.fits 2021-10-02 10:26:04,422 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-10-02 10:26:04,603 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:26:04,604 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:26:04,651 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:04,651 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:26:04.651614 2021-10-02 10:26:04,651 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:26:05,788 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:26:06,147 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.10057727969919472 [not converted] 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:26:06.148907 2021-10-02 10:26:06,149 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.497293 2021-10-02 10:26:06,149 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,155 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:26:06,348 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:26:06,349 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:26:06,352 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 3 inputs 2021-10-02 10:26:11,151 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:26:19,332 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:26:27,565 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:26:32,327 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-10-02 10:26:36,834 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-10-02 10:26:42,485 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2021-10-02 10:26:48,695 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2021-10-02 10:26:55,882 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2021-10-02 10:26:59,414 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002001_01101_00001_nrca5_a3001_crf.fits 2021-10-02 10:26:59,617 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002003_01101_00009_nrca5_a3001_crf.fits 2021-10-02 10:26:59,815 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002004_01101_00013_nrca5_a3001_crf.fits 2021-10-02 10:26:59,815 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:27:00,062 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:27:00,063 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:27:00,086 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:27:00,391 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for LMC_F277W_modA_dither_mosaic 2021-10-02 10:27:01,027 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:27:04,963 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:11,395 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:17,648 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:20,460 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:27:24,309 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:30,506 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:36,747 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:39,572 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:27:43,147 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:49,324 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:55,525 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:58,364 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:28:01,859 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:28:07,942 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:28:14,005 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:28:16,904 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 2021-10-02 10:28:17,564 - stpipe.Image3Pipeline.resample - INFO - Saved model in LMC_F277W_modA_dither_mosaic_i2d.fits 2021-10-02 10:28:17,565 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:28:17,760 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(3123, 3050) from LMC_F277W_modA_dither_mosaic_i2d.fits>,). 2021-10-02 10:28:17,761 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:28:17,784 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:28:17,793 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCALONG 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F277W 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-10-02 10:28:17,880 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.31542 2021-10-02 10:28:19,026 - stpipe.Image3Pipeline.source_catalog - INFO - Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). 2021-10-02 10:28:20,504 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 25631 sources ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0018.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.444, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/level3_F277W_3img_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw01069002001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.tweakreg:step.py:367 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:371 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002003_01101_00009_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002004_01101_00013_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:132 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:134 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002001_01101_00001_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002003_01101_00009_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002003_01101_00009_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002004_01101_00013_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002004_01101_00013_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:170 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:25:55.136959 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:25:55.136959 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.0270502 FIT MAE: 0.0197936 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.0270502 FIT MAE: 0.0197936 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 30 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 30 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.100896 FIT MAE: 0.0550174 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.100896 FIT MAE: 0.0550174 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 26 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 26 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:25:55.820095 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:25:55.820095 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.683136 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.683136 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:227 Starting new HTTP connection (1): gsss.stsci.edu:80 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:227 Starting new HTTP connection (1): gsss.stsci.edu:80 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:452 http://gsss.stsci.edu:80 "GET /webservices/vo/CatalogSearch.aspx?RA=80.49211032488223&DEC=-69.49384642479382&SR=0.03814898137128895&FORMAT=CSV&CAT=GAIADR2&MINDET=5 HTTP/1.1" 200 None DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:452 http://gsss.stsci.edu:80 "GET /webservices/vo/CatalogSearch.aspx?RA=80.49211032488223&DEC=-69.49384642479382&SR=0.03814898137128895&FORMAT=CSV&CAT=GAIADR2&MINDET=5 HTTP/1.1" 200 None INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:26:03.044536 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:26:03.044536 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: 987654' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: 987654' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 250 matches for 'GROUP ID: 987654'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 250 matches for 'GROUP ID: 987654'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: 987654: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: 987654: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.226815 FIT MAE: 0.110685 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.226815 FIT MAE: 0.110685 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 240 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 240 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:26:03.510173 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:26:03.510173 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.465637 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.465637 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw01069002001_01101_00001_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw01069002003_01101_00009_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw01069002004_01101_00013_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:470 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:26:04.651614 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:26:04.651614 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 3 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 3 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.10057727969919472 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.10057727969919472 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:26:06.148907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:26:06.148907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.497293 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.497293 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 3 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 36.3M available system memory 120.9G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 36.3M available system memory 120.9G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 61.63065148580338 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 61.63065148580338 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 62.07189388093626 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 62.07189388093626 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 58.78218190789646 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 58.78218190789646 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10057727969919472 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10057727969919472 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174849 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174849 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4107950 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4107950 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10614526713305913 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10614526713305913 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 178346 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 178346 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4103636 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4103636 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10182255727922683 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10182255727922683 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4183453 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4183453 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw01069002001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw01069002003_01101_00009_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw01069002004_01101_00013_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 36.3M available system memory 120.1G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 36.3M available system memory 120.1G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for LMC_F277W_modA_dither_mosaic INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for LMC_F277W_modA_dither_mosaic DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in LMC_F277W_modA_dither_mosaic_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(3123, 3050) from LMC_F277W_modA_dither_mosaic_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCALONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCALONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F277W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F277W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.31542 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.31542 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:327 Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:327 Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 25631 sources _____ ERROR at setup of test_tweakreg_with_gaia[jw01069002003_01101_00009] _____ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0') @pytest.fixture(scope="module") def run_image3pipeline(rtdata_module, jail): ''' Run calwebb_image3 on NIRCam imaging and align to gaia ''' collect_pipeline_cfgs("config") rtdata = rtdata_module rtdata.get_asn("nircam/image/level3_F277W_3img_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.align_to_gaia=True", "--steps.tweakreg.save_results=True", "--steps.tweakreg.output_use_model=True" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py:23: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError _____ ERROR at setup of test_tweakreg_with_gaia[jw01069002004_01101_00013] _____ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0') @pytest.fixture(scope="module") def run_image3pipeline(rtdata_module, jail): ''' Run calwebb_image3 on NIRCam imaging and align to gaia ''' collect_pipeline_cfgs("config") rtdata = rtdata_module rtdata.get_asn("nircam/image/level3_F277W_3img_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.align_to_gaia=True", "--steps.tweakreg.save_results=True", "--steps.tweakreg.output_use_model=True" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py:23: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError _____________ ERROR at setup of test_nircam_image_stage3_tweakreg ______________ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError ---------------------------- Captured stdout setup ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- ---------------------------- Captured stderr setup ----------------------------- 2021-10-02 10:33:22,160 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:33:22,162 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:33:22,165 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:33:22,168 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:33:22,169 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:33:22,170 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:33:22,170 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:33:22,170 - stpipe - INFO - OS: Linux 2021-10-02 10:33:22,615 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). 2021-10-02 10:33:22,620 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:33:22,780 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:33:22,809 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-10-02 10:33:22,811 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:33:22,811 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:33:22,811 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:33:22,812 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:33:22,812 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-10-02 10:33:22,814 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:33:22,816 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:33:22,816 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-10-02 10:33:22,818 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:33:22,821 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:33:22,821 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:33:22,821 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2021-10-02 10:33:22,823 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:33:22,823 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:33:22,823 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:33:22,824 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:33:22,824 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:33:22,824 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:33:22,825 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-10-02 10:33:22,825 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... 2021-10-02 10:33:23,324 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:23,327 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:33:23,620 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-10-02 10:33:23,620 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-10-02 10:33:23,620 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:33:23,685 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:33:24,079 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:24,080 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:33:26,910 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:33:27,227 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:27,228 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:33:27,253 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2021-10-02 10:33:27,254 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:33:27,902 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:33:27,904 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2021-10-02 10:33:27,947 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:33:28,255 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:28,256 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:33:28,280 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:33:28,414 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:33:32,480 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:35,281 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:33:39,435 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:42,362 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:33:46,497 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:49,293 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:33:53,418 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:56,246 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 2021-10-02 10:33:56,448 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00001_nrcb5_i2d.fits 2021-10-02 10:33:56,448 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:33:56,448 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-10-02 10:33:56,449 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:33:56,649 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrcb5_cal.fits 2021-10-02 10:33:56,649 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:33:57,902 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:33:57,903 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:33:57,904 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:33:57,905 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:33:57,905 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:33:57,906 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:33:57,907 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:33:57,907 - stpipe - INFO - OS: Linux 2021-10-02 10:33:58,242 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). 2021-10-02 10:33:58,246 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:33:58,373 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:33:58,382 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-10-02 10:33:58,385 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:33:58,386 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:33:58,386 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-10-02 10:33:58,388 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2021-10-02 10:33:58,391 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:33:58,391 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:33:58,393 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-10-02 10:33:58,393 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... 2021-10-02 10:33:58,681 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:33:58,682 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:33:58,937 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-10-02 10:33:58,937 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-10-02 10:33:58,937 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:33:58,990 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:33:59,155 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:33:59,156 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:33:59,560 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:33:59,726 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:33:59,727 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:33:59,751 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2021-10-02 10:33:59,752 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-10-02 10:33:59,838 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:33:59,838 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-10-02 10:33:59,838 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:33:59,839 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:33:59,839 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:33:59,888 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:33:59,889 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2021-10-02 10:33:59,919 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:34:00,087 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:34:00,088 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:34:00,112 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:34:00,223 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:34:05,063 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:07,868 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:34:13,066 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:15,905 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:34:21,337 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:24,126 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:34:29,307 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:32,119 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 2021-10-02 10:34:32,294 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00002_nrca5_i2d.fits 2021-10-02 10:34:32,294 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:34:32,294 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-10-02 10:34:32,295 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:34:32,489 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrca5_cal.fits 2021-10-02 10:34:32,489 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:34:33,501 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:34:33,502 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:34:33,503 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:34:33,504 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:34:33,505 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:34:33,506 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:34:33,506 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:34:33,506 - stpipe - INFO - OS: Linux 2021-10-02 10:34:33,713 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). 2021-10-02 10:34:33,716 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:34:33,855 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:34:33,866 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-10-02 10:34:33,869 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:34:33,870 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:34:33,871 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-10-02 10:34:33,872 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2021-10-02 10:34:33,875 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:34:33,875 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:34:33,875 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:34:33,876 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:34:33,876 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:34:33,876 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:34:33,877 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-10-02 10:34:33,877 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... 2021-10-02 10:34:34,179 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:34,180 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:34:34,438 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-10-02 10:34:34,438 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-10-02 10:34:34,438 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:34:34,489 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:34:34,650 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:34,651 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:34:34,997 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:34:35,160 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:35,160 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:34:35,185 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2021-10-02 10:34:35,185 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-10-02 10:34:35,270 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:34:35,270 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-10-02 10:34:35,271 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:34:35,271 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:34:35,271 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:34:35,315 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:34:35,317 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2021-10-02 10:34:35,345 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:34:35,506 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:35,507 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:34:35,530 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:34:35,638 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:34:40,814 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:34:43,596 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:34:48,700 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:34:51,492 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:34:56,046 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:34:58,829 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:35:03,519 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:35:06,417 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 2021-10-02 10:35:06,595 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00002_nrcb5_i2d.fits 2021-10-02 10:35:06,595 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:35:06,595 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-10-02 10:35:06,596 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:35:06,774 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrcb5_cal.fits 2021-10-02 10:35:06,774 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:35:07,866 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:35:07,867 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:35:07,868 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:35:07,869 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:35:07,870 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:35:07,871 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:35:07,871 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:35:07,871 - stpipe - INFO - OS: Linux 2021-10-02 10:35:08,077 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). 2021-10-02 10:35:08,080 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:35:08,208 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:35:08,217 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-10-02 10:35:08,218 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-10-02 10:35:08,220 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:35:08,221 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:35:08,221 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-10-02 10:35:08,223 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:35:08,228 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:35:08,228 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-10-02 10:35:08,228 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... 2021-10-02 10:35:08,520 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:08,521 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:35:08,775 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-10-02 10:35:08,775 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-10-02 10:35:08,775 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:35:08,827 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:35:08,991 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:08,991 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:35:09,325 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:35:09,487 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:09,488 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:35:09,512 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2021-10-02 10:35:09,512 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:35:09,647 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:35:09,648 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2021-10-02 10:35:09,677 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:35:09,841 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:09,842 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:35:09,865 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:35:09,982 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:35:15,071 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:17,879 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:35:22,877 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:25,690 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:35:30,691 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:33,482 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:35:38,347 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:41,176 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 2021-10-02 10:35:41,351 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00003_nrca5_i2d.fits 2021-10-02 10:35:41,351 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:35:41,351 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-10-02 10:35:41,352 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:35:41,529 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrca5_cal.fits 2021-10-02 10:35:41,529 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:35:42,591 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:35:42,592 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:35:42,593 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:35:42,594 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:35:42,594 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:35:42,595 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:35:42,595 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:35:42,596 - stpipe - INFO - OS: Linux 2021-10-02 10:35:42,985 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). 2021-10-02 10:35:42,989 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:35:43,117 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:35:43,130 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-10-02 10:35:43,131 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:35:43,131 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:35:43,131 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:35:43,132 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:35:43,132 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-10-02 10:35:43,133 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:35:43,134 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:35:43,134 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-10-02 10:35:43,135 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-10-02 10:35:43,136 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-10-02 10:35:43,139 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... 2021-10-02 10:35:43,609 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:43,610 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:35:43,894 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-10-02 10:35:43,894 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-10-02 10:35:43,894 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:35:43,946 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:35:44,290 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:44,291 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:35:44,708 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:35:45,079 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:45,080 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:35:45,106 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2021-10-02 10:35:45,106 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:35:45,273 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:35:45,274 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2021-10-02 10:35:45,308 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:35:45,663 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:45,664 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:35:45,689 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:35:45,813 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:35:50,391 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:35:53,180 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:35:57,760 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:36:00,575 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:36:05,000 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:36:07,808 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:36:12,740 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:36:15,551 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 2021-10-02 10:36:15,735 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00003_nrcb5_i2d.fits 2021-10-02 10:36:15,735 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:36:15,735 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-10-02 10:36:15,736 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:36:15,927 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrcb5_cal.fits 2021-10-02 10:36:15,927 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:36:16,289 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf 2021-10-02 10:36:16,305 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:36:16,608 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:36:16,684 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:36:16,685 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:36:16,686 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:36:16,687 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:36:16,688 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:36:16,689 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:36:16,690 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:36:16,690 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:36:16,690 - stpipe - INFO - OS: Linux 2021-10-02 10:36:16,919 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). 2021-10-02 10:36:16,924 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:36:17,008 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:36:17,012 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:36:17,014 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:36:17,015 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:36:17,016 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:36:17,652 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-10-02 10:36:17,654 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-10-02 10:36:19,573 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. 2021-10-02 10:36:21,444 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. 2021-10-02 10:36:23,304 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. 2021-10-02 10:36:25,132 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. 2021-10-02 10:36:27,401 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. 2021-10-02 10:36:29,730 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. 2021-10-02 10:36:29,787 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:29,787 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-10-02 10:36:29,787 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-10-02 10:36:29,827 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00001_nrc': 2021-10-02 10:36:29,828 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrca5_cal 2021-10-02 10:36:29,828 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrcb5_cal 2021-10-02 10:36:29,869 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00002_nrc': 2021-10-02 10:36:29,869 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrca5_cal 2021-10-02 10:36:29,869 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrcb5_cal 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00003_nrc': 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrca5_cal 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrcb5_cal 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:36:29.909856 2021-10-02 10:36:29,910 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2021-10-02 10:36:29,910 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,056 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image 2021-10-02 10:36:30,059 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. 2021-10-02 10:36:30,264 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-10-02 10:36:30,264 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:36:30,265 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. 2021-10-02 10:36:30,266 - stpipe.Image3Pipeline.tweakreg - INFO - Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... 2021-10-02 10:36:30,266 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:36:30,268 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: 2021-10-02 10:36:30,268 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.175218 FIT MAE: 0.128754 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 95 objects. 2021-10-02 10:36:30,338 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. 2021-10-02 10:36:30,545 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-10-02 10:36:30,545 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:36:30,546 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. 2021-10-02 10:36:30,547 - stpipe.Image3Pipeline.tweakreg - INFO - Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... 2021-10-02 10:36:30,547 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:36:30,549 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: 2021-10-02 10:36:30,549 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 2021-10-02 10:36:30,549 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.185757 FIT MAE: 0.136126 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 87 objects. 2021-10-02 10:36:30,618 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,619 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:36:30.618900 2021-10-02 10:36:30,619 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.709044 2021-10-02 10:36:30,619 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:31,574 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00001_nrca5_tweakreg.fits 2021-10-02 10:36:32,573 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00001_nrcb5_tweakreg.fits 2021-10-02 10:36:33,476 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00002_nrca5_tweakreg.fits 2021-10-02 10:36:34,472 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00002_nrcb5_tweakreg.fits 2021-10-02 10:36:35,466 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00003_nrca5_tweakreg.fits 2021-10-02 10:36:36,441 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00003_nrcb5_tweakreg.fits 2021-10-02 10:36:36,441 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-10-02 10:36:36,877 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:36:36,879 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:36:37.034022 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:36:37,035 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:37,035 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000354205 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000354205 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.000861847 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.000861847 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:36:41,311 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.15121705532532562 [not converted] 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:36:41.313088 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.279066 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,322 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:36:41,509 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:36:41,510 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:36:41,513 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 6 inputs 2021-10-02 10:36:47,116 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:36:54,982 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:04,354 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:13,906 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:23,198 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:32,885 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:39,605 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-10-02 10:37:44,741 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-10-02 10:37:49,320 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:37:54,450 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:00,694 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:07,122 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:13,971 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:20,797 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:28,069 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits 2021-10-02 10:38:28,980 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits 2021-10-02 10:38:29,750 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits 2021-10-02 10:38:30,532 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits 2021-10-02 10:38:31,406 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits 2021-10-02 10:38:32,086 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits 2021-10-02 10:38:32,086 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:38:33,060 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:38:33,061 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:38:33,083 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:38:33,250 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw42424-o002_t001_nircam_clear-f444w 2021-10-02 10:38:33,858 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:38:37,069 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:38:43,399 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:38:49,992 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:38:56,915 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:03,734 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:10,336 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:13,235 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:39:16,247 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:22,118 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:28,594 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:35,042 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:41,391 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:47,688 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:50,621 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:39:53,421 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:59,141 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:05,402 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:11,774 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:18,117 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:24,498 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:27,348 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:40:30,114 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:35,799 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:42,028 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:48,495 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:54,720 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:41:01,091 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:41:04,000 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 2021-10-02 10:41:04,837 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits 2021-10-02 10:41:04,837 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:41:05,148 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). 2021-10-02 10:41:05,149 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:41:05,171 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:41:05,180 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:41:05,180 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:41:05,180 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-10-02 10:41:05,181 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F444W 2021-10-02 10:41:05,181 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:41:05,181 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-10-02 10:41:05,225 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 3.24181 2021-10-02 10:41:08,927 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 126 sources ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.3G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.3G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.tweakreg:step.py:367 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:371 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:132 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:134 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00001_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00001_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00002_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00002_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00002_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00003_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00003_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00003_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:170 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:36:29.909856 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:36:29.909856 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175218 FIT MAE: 0.128754 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175218 FIT MAE: 0.128754 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185757 FIT MAE: 0.136126 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185757 FIT MAE: 0.136126 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:36:30.618900 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:36:30.618900 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.709044 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.709044 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:470 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:36:37.034022 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:36:37.034022 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.15121705532532562 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.15121705532532562 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:36:41.313088 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:36:41.313088 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.279066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.279066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 6 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 45.6M available system memory 120.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 45.6M available system memory 120.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27672425479357 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27672425479357 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.16565665694313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.16565665694313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.19279386931629 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.19279386931629 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 104677 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 104677 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4171514 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4171514 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166035 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166035 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4169768 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4169768 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4160562 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4160562 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167952 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167952 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166483 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166483 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 45.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 45.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw42424-o002_t001_nircam_clear-f444w INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw42424-o002_t001_nircam_clear-f444w DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 126 sources _______________ ERROR at setup of test_nircam_image_stage3[i2d] ________________ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError ______________ ERROR at setup of test_nircam_image_stage3_catalog ______________ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError _______________ ERROR at setup of test_nircam_image_stage3_segm ________________ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError ___________________ ERROR at setup of test_image3_closedfile ___________________ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f85174d6b50> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture() def run_image3_closedfile(rtdata, jail): """Run calwebb_image3 on NIRCam imaging with data that had a closed file issue.""" rtdata.get_asn("nircam/image/fail_short_image3_asn.json") collect_pipeline_cfgs("config") args = ["config/calwebb_image3.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:184: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f85174d6b50> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError ---------------------------- Captured stdout setup ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- ---------------------------- Captured stderr setup ----------------------------- 2021-10-02 10:41:11,582 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2021-10-02 10:41:11,652 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:41:11,974 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:41:12,056 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:41:12,057 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:41:12,058 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:41:12,059 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:41:12,060 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:41:12,061 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:41:12,062 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:41:12,062 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:41:12,062 - stpipe - INFO - OS: Linux 2021-10-02 10:41:12,340 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2021-10-02 10:41:12,346 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:41:12,438 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:41:12,441 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:41:12,442 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:41:12,443 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:41:12,445 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:41:12,859 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:41:12,860 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:12.877583 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:12.879649 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,881 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:41:13,119 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:41:13,120 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:41:13,133 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:41:13,240 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2021-10-02 10:41:13,814 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:41:13,878 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,007 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,075 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:41:14,135 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,266 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,335 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:41:14,397 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,530 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,598 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:41:14,659 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,789 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,866 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 2021-10-02 10:41:15,260 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits 2021-10-02 10:41:15,260 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:41:15,522 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). 2021-10-02 10:41:15,524 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:41:15,539 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:41:15,547 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F090W 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: SUB320 2021-10-02 10:41:15,588 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.50412 2021-10-02 10:41:15,689 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1 sources ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:12.877583 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:12.877583 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:12.879649 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:12.879649 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 1 sources _______________ ERROR at call of test_nircam_image_moving_target _______________ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517bb8c10> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...i2d.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["calwebb_image3", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:15: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517bb8c10> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/posixpath.py:152: TypeError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stdout call ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- ----------------------------- Captured stderr call ----------------------------- 2021-10-02 10:41:21,667 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2021-10-02 10:41:21,704 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:41:22,512 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:41:22,727 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:41:22,728 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:41:22,729 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:41:22,730 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:41:22,731 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:41:22,732 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:41:22,733 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:41:22,733 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:41:22,733 - stpipe - INFO - OS: Linux 2021-10-02 10:41:23,084 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2021-10-02 10:41:23,090 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:41:23,304 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:41:23,307 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:41:23,308 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:41:23,309 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:41:23,310 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:41:24,446 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2021-10-02 10:41:24,447 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2021-10-02 10:41:24,541 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2021-10-02 10:41:24,899 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:41:24,900 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 2021-10-02 10:41:28,599 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 2021-10-02 10:41:28,599 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,605 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:41:28,890 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:41:28,892 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:41:28,895 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-10-02 10:41:33,878 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:41,941 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:50,070 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:58,325 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:03,547 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-10-02 10:42:06,420 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-10-02 10:42:11,619 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:17,612 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:23,465 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:29,206 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:33,604 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2021-10-02 10:42:33,785 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2021-10-02 10:42:33,973 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2021-10-02 10:42:34,164 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2021-10-02 10:42:34,164 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:42:34,482 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:42:34,483 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:42:34,502 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:42:34,640 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2021-10-02 10:42:35,218 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:42:38,286 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:44,088 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:49,926 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:55,628 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:58,489 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:43:01,431 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:07,120 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:12,777 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:18,388 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:21,220 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:43:24,138 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:29,903 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:35,656 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:41,312 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:44,148 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:43:47,050 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:52,843 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:58,601 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:44:04,285 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:44:07,149 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2021-10-02 10:44:07,752 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2021-10-02 10:44:07,752 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:44:08,023 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2021-10-02 10:44:08,024 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:44:08,045 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-10-02 10:44:08,097 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2021-10-02 10:44:10,254 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 583 sources ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:367 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:371 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:470 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 117.0G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 117.0G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 583 sources =================================== FAILURES =================================== _______________________ test_nircam_image_moving_target ________________________ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517bb8c10> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...i2d.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["calwebb_image3", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:15: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517bb8c10> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stdout call ----------------------------- ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- ----------------------------- Captured stderr call ----------------------------- 2021-10-02 10:41:21,667 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2021-10-02 10:41:21,704 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:41:22,512 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:41:22,727 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:41:22,728 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:41:22,729 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:41:22,730 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:41:22,731 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:41:22,732 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:41:22,733 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:41:22,733 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:41:22,733 - stpipe - INFO - OS: Linux 2021-10-02 10:41:23,084 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2021-10-02 10:41:23,090 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:41:23,304 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:41:23,307 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:41:23,308 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:41:23,309 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:41:23,310 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:41:24,446 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2021-10-02 10:41:24,447 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2021-10-02 10:41:24,541 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2021-10-02 10:41:24,899 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:41:24,900 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 2021-10-02 10:41:28,599 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 2021-10-02 10:41:28,599 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,605 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:41:28,890 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:41:28,892 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:41:28,895 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-10-02 10:41:33,878 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:41,941 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:50,070 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:58,325 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:03,547 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-10-02 10:42:06,420 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-10-02 10:42:11,619 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:17,612 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:23,465 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:29,206 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:33,604 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2021-10-02 10:42:33,785 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2021-10-02 10:42:33,973 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2021-10-02 10:42:34,164 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2021-10-02 10:42:34,164 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:42:34,482 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:42:34,483 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:42:34,502 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:42:34,640 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2021-10-02 10:42:35,218 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:42:38,286 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:44,088 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:49,926 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:55,628 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:58,489 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:43:01,431 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:07,120 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:12,777 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:18,388 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:21,220 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:43:24,138 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:29,903 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:35,656 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:41,312 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:44,148 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:43:47,050 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:52,843 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:58,601 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:44:04,285 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:44:07,149 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2021-10-02 10:44:07,752 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2021-10-02 10:44:07,752 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:44:08,023 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2021-10-02 10:44:08,024 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:44:08,045 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-10-02 10:44:08,097 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2021-10-02 10:44:10,254 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 583 sources ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:367 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:371 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:470 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 117.0G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 117.0G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 583 sources _____________________ test_nircam_detector1_subarray[rate] _____________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rate.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f851441e640>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-10-02 10:44:22,371 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf 2021-10-02 10:44:22,385 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2021-10-02 10:44:22,386 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2021-10-02 10:44:22,386 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2021-10-02 10:44:22,387 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2021-10-02 10:44:22,388 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2021-10-02 10:44:22,388 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2021-10-02 10:44:22,389 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2021-10-02 10:44:22,390 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2021-10-02 10:44:22,390 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2021-10-02 10:44:22,391 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2021-10-02 10:44:22,392 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2021-10-02 10:44:22,392 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2021-10-02 10:44:22,393 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2021-10-02 10:44:22,394 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2021-10-02 10:44:22,394 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2021-10-02 10:44:22,395 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2021-10-02 10:44:22,396 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2021-10-02 10:44:22,396 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:44:22,396 - stpipe - INFO - OS: Linux 2021-10-02 10:44:22,736 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). 2021-10-02 10:44:22,751 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} 2021-10-02 10:44:22,881 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2021-10-02 10:44:22,918 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits'. 2021-10-02 10:44:22,920 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits'. 2021-10-02 10:44:22,922 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits'. 2021-10-02 10:44:22,923 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits'. 2021-10-02 10:44:22,924 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0030.fits'. 2021-10-02 10:44:22,926 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits'. 2021-10-02 10:44:22,930 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits'. 2021-10-02 10:44:22,932 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0002.fits'. 2021-10-02 10:44:22,933 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0004.fits'. 2021-10-02 10:44:22,935 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2021-10-02 10:44:23,257 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:23,258 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:23,293 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed 2021-10-02 10:44:23,293 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2021-10-02 10:44:23,294 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2021-10-02 10:44:23,479 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:23,480 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:23,498 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits 2021-10-02 10:44:24,091 - stpipe.Detector1Pipeline.dq_init - INFO - Extracting mask subarray to match science data 2021-10-02 10:44:24,099 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2021-10-02 10:44:24,291 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:24,292 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:24,310 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits 2021-10-02 10:44:25,100 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,131 - stpipe.Detector1Pipeline.saturation - INFO - Extracting reference file subarray to match science data 2021-10-02 10:44:25,143 - stpipe.Detector1Pipeline.saturation - INFO - Detected 514 saturated pixels 2021-10-02 10:44:25,143 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2021-10-02 10:44:25,146 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2021-10-02 10:44:25,362 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:25,363 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:25,363 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2021-10-02 10:44:25,364 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2021-10-02 10:44:25,550 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:25,551 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:25,570 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits 2021-10-02 10:44:28,471 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:28,513 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2021-10-02 10:44:28,703 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:28,704 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2021-10-02 10:44:28,711 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2021-10-02 10:44:29,425 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2021-10-02 10:44:29,612 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:29,613 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:29,633 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits 2021-10-02 10:44:31,529 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,561 - stpipe.Detector1Pipeline.linearity - INFO - Extracting linearity subarray to match science data 2021-10-02 10:44:31,591 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2021-10-02 10:44:31,779 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:31,780 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2021-10-02 10:44:32,533 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:33,024 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits 2021-10-02 10:44:33,026 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2021-10-02 10:44:33,234 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:33,235 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} 2021-10-02 10:44:33,255 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits 2021-10-02 10:44:34,228 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:34,228 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:34,230 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=5, nframes=1, groupgap=0 2021-10-02 10:44:34,230 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=20, nframes=1, groupgap=0 2021-10-02 10:44:34,268 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2021-10-02 10:44:34,458 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:34,459 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} 2021-10-02 10:44:34,467 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma 2021-10-02 10:44:34,479 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits 2021-10-02 10:44:35,040 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits 2021-10-02 10:44:36,067 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection 2021-10-02 10:44:36,099 - stpipe.Detector1Pipeline.jump - INFO - Extracting gain subarray to match science data 2021-10-02 10:44:36,100 - stpipe.Detector1Pipeline.jump - INFO - Extracting readnoise subarray to match science data 2021-10-02 10:44:36,103 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2021-10-02 10:44:36,109 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2021-10-02 10:44:36,141 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 1727 pixels with at least one CR and at least four groups 2021-10-02 10:44:36,142 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 0 pixels with at least one CR and three groups 2021-10-02 10:44:36,142 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 2 pixels with at least one CR and two groups 2021-10-02 10:44:36,184 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 0.0803099 sec 2021-10-02 10:44:36,185 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 1.717962 2021-10-02 10:44:36,188 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2021-10-02 10:44:36,375 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:36,376 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2021-10-02 10:44:36,405 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits 2021-10-02 10:44:36,423 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits 2021-10-02 10:44:36,452 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2021-10-02 10:44:36,452 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2021-10-02 10:44:36,452 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting gain subarray to match science data 2021-10-02 10:44:36,453 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting readnoise subarray to match science data 2021-10-02 10:44:36,839 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 5 2021-10-02 10:44:36,839 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2021-10-02 10:44:36,898 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2021-10-02 10:44:37,085 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:37,085 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:37,132 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-10-02 10:44:37,132 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-10-02 10:44:37,134 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-10-02 10:44:37,320 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:37,321 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:37,368 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-10-02 10:44:37,368 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-10-02 10:44:37,370 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-10-02 10:44:37,440 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rateints.fits 2021-10-02 10:44:37,441 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2021-10-02 10:44:37,502 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rate.fits 2021-10-02 10:44:37,502 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe.Detector1Pipeline:step.py:321 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:321 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:321 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:321 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:321 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:321 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:321 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:321 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:321 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:321 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:321 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:321 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:321 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:321 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:321 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:321 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:321 GainScaleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Detector1Pipeline:step.py:367 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:371 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0030.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0002.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0004.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:367 Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:371 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:49 NFRAMES and FRMDIVSR are equal; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:50 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:470 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:367 Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:371 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:step.py:470 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:367 Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:371 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 514 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 514 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:470 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:367 Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:371 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:401 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:470 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:367 Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:371 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:470 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:367 Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:371 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout INFO stpipe.Detector1Pipeline.refpix:step.py:470 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:367 Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:371 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:23 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:470 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:367 Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:371 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:928 Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:470 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:367 Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:371 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=20, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=20, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:470 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:367 Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:371 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:51 CR rejection threshold = 4 sigma DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:57 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:63 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 1727 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 1727 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0803099 sec INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0803099 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:75 The execution time in seconds: 1.717962 INFO stpipe.Detector1Pipeline.jump:step.py:470 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:367 Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:371 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 514: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 514: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -34.512970, 0.050270, 644.399109, 3.217029 DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -34.512970, 0.050270, 644.399109, 3.217029 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.382903 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.382903 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:470 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw00617196001_02102_00001_nrca4_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw00617196001_02102_00001_nrca4_rate.fits INFO stpipe.Detector1Pipeline:step.py:470 Step Detector1Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 ___________________ test_nircam_detector1_subarray[rateints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rateints.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rateints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rateints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f851771e130>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 =============================== warnings summary =============================== miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py: 57 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py: 32 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/gwcs/wcs.py:1990: DeprecationWarning: Indexing a WCS.pipeline step is deprecated. Use the `frame` and `transform` attributes instead. warnings.warn("Indexing a WCS.pipeline step is deprecated. " miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py: 14 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py: 2 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py: 2 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002001_01101_00001] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:422: AstropyDeprecationWarning: "filter_kernel" was deprecated in version 1.2 and will be removed in a future version. Use argument "kernel" instead. segm = detect_sources(data, threshold, npixels, filter_kernel=kernel, miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/resample/resample_utils.py:156: RuntimeWarning: var_rnoise array not available. Setting drizzle weight map to 1 warnings.warn("var_rnoise array not available. Setting drizzle weight map to 1", miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3440: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:189: RuntimeWarning: invalid value encountered in true_divide ret = ret.dtype.type(ret / rcount) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/config_parser.py:118: ResourceWarning: unclosed file <_io.BufferedReader name='config/calwebb_image2.cfg'> return ConfigObj(config_file, raise_errors=True) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/config_parser.py:118: ResourceWarning: unclosed file <_io.BufferedReader name='config/calwebb_image3.cfg'> return ConfigObj(config_file, raise_errors=True) -- Docs: https://docs.pytest.org/en/stable/warnings.html - generated html file: file:///data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpn3y0irs4/regtest_report.html - =========================== short test summary info ============================ FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rate] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rateints] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002001_01101_00001] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002003_01101_00009] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002004_01101_00013] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3[i2d] ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segm ERROR ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target = 3 failed, 44 passed, 2 skipped, 412 deselected, 138 warnings, 9 errors in 1226.57s (0:20:26) =
HTML(html_report)
Report generated on 02-Oct-2021 at 10:45:54 by pytest-html v3.1.1
| BUILD_ID | 94 |
| BUILD_NUMBER | 94 |
| BUILD_TAG | jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-94 |
| BUILD_URL | https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/94/ |
| EXECUTOR_NUMBER | 28 |
| GIT_BRANCH | origin/master |
| GIT_COMMIT | 334866f90b8270be95b73987c45dfaa05c5a03c0 |
| GIT_URL | https://github.com/spacetelescope/jwst_validation_notebooks |
| JENKINS_URL | https://plwishmaster.stsci.edu:8081/ |
| JOB_NAME | Notebooks/jwst_validation_notebooks_spacetelescope |
| NODE_NAME | jwcalibdev.stsci.edu |
| Packages | {"pluggy": "1.0.0", "py": "1.10.0", "pytest": "6.2.5"} |
| Platform | Linux-3.10.0-1160.41.1.el7.x86_64-x86_64-with-glibc2.17 |
| Plugins | {"asdf": "2.8.1", "ci-watson": "0.5", "html": "3.1.1", "jwst": "1.3.1", "metadata": "1.11.0"} |
| Python | 3.9.7 |
| WORKSPACE | /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope |
47 tests ran in 1226.20 seconds.
(Un)check the boxes to filter the results.
44 passed, 2 skipped, 3 failed, 8 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002001_01101_00001]::setup | 175.06 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0') @pytest.fixture(scope="module") def run_image3pipeline(rtdata_module, jail): ''' Run calwebb_image3 on NIRCam imaging and align to gaia ''' collect_pipeline_cfgs("config") rtdata = rtdata_module rtdata.get_asn("nircam/image/level3_F277W_3img_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.align_to_gaia=True", "--steps.tweakreg.save_results=True", "--steps.tweakreg.output_use_model=True" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py:23: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError -----------------------------Captured stdout setup------------------------------ ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- -----------------------------Captured stderr setup------------------------------ 2021-10-02 10:25:38,445 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0018.asdf 2021-10-02 10:25:38,476 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.444, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:25:39,355 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:25:39,586 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:25:39,587 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:25:39,588 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:25:39,589 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:25:39,590 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:25:39,591 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:25:39,592 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:25:39,592 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:25:39,592 - stpipe - INFO - OS: Linux 2021-10-02 10:25:39,743 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/level3_F277W_3img_asn.json',). 2021-10-02 10:25:39,748 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:25:39,979 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw01069002001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:25:39,997 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:25:39,998 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:25:39,999 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:25:40,001 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:25:40,702 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-10-02 10:25:40,703 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-10-02 10:25:45,522 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002001_01101_00001_nrca5_cal.fits. 2021-10-02 10:25:50,558 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002003_01101_00009_nrca5_cal.fits. 2021-10-02 10:25:55,051 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002004_01101_00013_nrca5_cal.fits. 2021-10-02 10:25:55,061 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,062 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-10-02 10:25:55,062 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-10-02 10:25:55,085 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002001_01101_00001_nrca5_cal': 2021-10-02 10:25:55,085 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002001_01101_00001_nrca5_cal 2021-10-02 10:25:55,105 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002003_01101_00009_nrca5_cal': 2021-10-02 10:25:55,105 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002003_01101_00009_nrca5_cal 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002004_01101_00013_nrca5_cal': 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002004_01101_00013_nrca5_cal 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,136 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,137 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:25:55.136959 2021-10-02 10:25:55,137 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2021-10-02 10:25:55,137 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,345 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image 2021-10-02 10:25:55,349 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,546 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. 2021-10-02 10:25:55,546 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:25:55,547 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. 2021-10-02 10:25:55,548 - stpipe.Image3Pipeline.tweakreg - INFO - Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... 2021-10-02 10:25:55,548 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0270502 FIT MAE: 0.0197936 2021-10-02 10:25:55,551 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 30 objects. 2021-10-02 10:25:55,593 - stpipe.Image3Pipeline.tweakreg - INFO - Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,636 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,773 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. 2021-10-02 10:25:55,773 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:25:55,774 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. 2021-10-02 10:25:55,775 - stpipe.Image3Pipeline.tweakreg - INFO - Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... 2021-10-02 10:25:55,775 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:25:55,777 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.100896 FIT MAE: 0.0550174 2021-10-02 10:25:55,778 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 26 objects. 2021-10-02 10:25:55,819 - stpipe.Image3Pipeline.tweakreg - INFO - Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:25:55.820095 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.683136 2021-10-02 10:25:55,820 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,044 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,044 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:26:03.044536 2021-10-02 10:26:03,045 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2021-10-02 10:26:03,045 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,235 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: 987654' to the reference catalog. 2021-10-02 10:26:03,387 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. 2021-10-02 10:26:03,387 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:26:03,406 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. 2021-10-02 10:26:03,408 - stpipe.Image3Pipeline.tweakreg - INFO - Found 250 matches for 'GROUP ID: 987654'... 2021-10-02 10:26:03,408 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: 987654: 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,411 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.226815 FIT MAE: 0.110685 2021-10-02 10:26:03,412 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 240 objects. 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:26:03.510173 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.465637 2021-10-02 10:26:03,510 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:26:03,785 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002001_01101_00001_nrca5_tweakreg.fits 2021-10-02 10:26:04,225 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002003_01101_00009_nrca5_tweakreg.fits 2021-10-02 10:26:04,422 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002004_01101_00013_nrca5_tweakreg.fits 2021-10-02 10:26:04,422 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-10-02 10:26:04,603 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:26:04,604 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:26:04,651 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:04,651 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:26:04.651614 2021-10-02 10:26:04,651 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:04,652 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:26:05,788 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:05,789 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:26:06,147 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.10057727969919472 [not converted] 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,148 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:26:06.148907 2021-10-02 10:26:06,149 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.497293 2021-10-02 10:26:06,149 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:26:06,155 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:26:06,348 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:26:06,349 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:26:06,352 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 3 inputs 2021-10-02 10:26:11,151 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:26:19,332 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:26:27,565 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:26:32,327 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-10-02 10:26:36,834 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-10-02 10:26:42,485 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2021-10-02 10:26:48,695 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2021-10-02 10:26:55,882 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2021-10-02 10:26:59,414 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002001_01101_00001_nrca5_a3001_crf.fits 2021-10-02 10:26:59,617 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002003_01101_00009_nrca5_a3001_crf.fits 2021-10-02 10:26:59,815 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002004_01101_00013_nrca5_a3001_crf.fits 2021-10-02 10:26:59,815 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:27:00,062 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:27:00,063 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:27:00,086 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:27:00,391 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for LMC_F277W_modA_dither_mosaic 2021-10-02 10:27:01,027 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:27:04,963 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:11,395 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:17,648 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:20,460 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:27:24,309 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:30,506 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:36,747 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:39,572 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:27:43,147 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:49,324 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:55,525 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:27:58,364 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:28:01,859 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:28:07,942 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:28:14,005 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2021-10-02 10:28:16,904 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 2021-10-02 10:28:17,564 - stpipe.Image3Pipeline.resample - INFO - Saved model in LMC_F277W_modA_dither_mosaic_i2d.fits 2021-10-02 10:28:17,565 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:28:17,760 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(3123, 3050) from LMC_F277W_modA_dither_mosaic_i2d.fits>,). 2021-10-02 10:28:17,761 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:28:17,784 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:28:17,793 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCALONG 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F277W 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:28:17,794 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-10-02 10:28:17,880 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.31542 2021-10-02 10:28:19,026 - stpipe.Image3Pipeline.source_catalog - INFO - Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). 2021-10-02 10:28:20,504 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 25631 sources -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0018.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.444, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/level3_F277W_3img_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw01069002001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.tweakreg:step.py:367 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:371 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002003_01101_00009_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002004_01101_00013_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:132 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:134 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002001_01101_00001_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002003_01101_00009_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002003_01101_00009_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002004_01101_00013_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002004_01101_00013_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:170 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:25:55.136959 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:25:55.136959 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.0270502 FIT MAE: 0.0197936 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.0270502 FIT MAE: 0.0197936 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 30 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 30 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.100896 FIT MAE: 0.0550174 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.100896 FIT MAE: 0.0550174 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 26 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 26 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:25:55.820095 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:25:55.820095 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.683136 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.683136 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:227 Starting new HTTP connection (1): gsss.stsci.edu:80 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:227 Starting new HTTP connection (1): gsss.stsci.edu:80 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:452 http://gsss.stsci.edu:80 "GET /webservices/vo/CatalogSearch.aspx?RA=80.49211032488223&DEC=-69.49384642479382&SR=0.03814898137128895&FORMAT=CSV&CAT=GAIADR2&MINDET=5 HTTP/1.1" 200 None DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:452 http://gsss.stsci.edu:80 "GET /webservices/vo/CatalogSearch.aspx?RA=80.49211032488223&DEC=-69.49384642479382&SR=0.03814898137128895&FORMAT=CSV&CAT=GAIADR2&MINDET=5 HTTP/1.1" 200 None INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:26:03.044536 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:26:03.044536 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: 987654' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: 987654' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 250 matches for 'GROUP ID: 987654'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 250 matches for 'GROUP ID: 987654'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: 987654: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: 987654: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.226815 FIT MAE: 0.110685 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.226815 FIT MAE: 0.110685 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 240 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 240 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:26:03.510173 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:26:03.510173 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.465637 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.465637 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw01069002001_01101_00001_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw01069002003_01101_00009_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw01069002004_01101_00013_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:470 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:26:04.651614 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:26:04.651614 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 3 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 3 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.10057727969919472 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.10057727969919472 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:26:06.148907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:26:06.148907 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.497293 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.497293 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 3 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 36.3M available system memory 120.9G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 36.3M available system memory 120.9G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 61.63065148580338 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 61.63065148580338 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 62.07189388093626 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 62.07189388093626 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 58.78218190789646 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 58.78218190789646 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10057727969919472 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10057727969919472 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174849 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174849 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4107950 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4107950 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10614526713305913 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10614526713305913 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 178346 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 178346 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4103636 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4103636 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10182255727922683 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10182255727922683 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4183453 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4183453 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw01069002001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw01069002003_01101_00009_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw01069002004_01101_00013_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 36.3M available system memory 120.1G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 36.3M available system memory 120.1G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for LMC_F277W_modA_dither_mosaic INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for LMC_F277W_modA_dither_mosaic DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in LMC_F277W_modA_dither_mosaic_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(3123, 3050) from LMC_F277W_modA_dither_mosaic_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCALONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCALONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F277W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F277W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.31542 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.31542 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:327 Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:327 Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 25631 sources | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002003_01101_00009]::setup | 0.00 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0') @pytest.fixture(scope="module") def run_image3pipeline(rtdata_module, jail): ''' Run calwebb_image3 on NIRCam imaging and align to gaia ''' collect_pipeline_cfgs("config") rtdata = rtdata_module rtdata.get_asn("nircam/image/level3_F277W_3img_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.align_to_gaia=True", "--steps.tweakreg.save_results=True", "--steps.tweakreg.output_use_model=True" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py:23: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002004_01101_00013]::setup | 0.00 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0') @pytest.fixture(scope="module") def run_image3pipeline(rtdata_module, jail): ''' Run calwebb_image3 on NIRCam imaging and align to gaia ''' collect_pipeline_cfgs("config") rtdata = rtdata_module rtdata.get_asn("nircam/image/level3_F277W_3img_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.align_to_gaia=True", "--steps.tweakreg.save_results=True", "--steps.tweakreg.output_use_model=True" ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py:23: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f858cef3880> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg::setup | 468.75 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError -----------------------------Captured stdout setup------------------------------ ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- -----------------------------Captured stderr setup------------------------------ 2021-10-02 10:33:22,160 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:33:22,162 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:33:22,165 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:33:22,168 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:33:22,169 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:33:22,170 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:33:22,170 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:33:22,170 - stpipe - INFO - OS: Linux 2021-10-02 10:33:22,615 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). 2021-10-02 10:33:22,620 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:33:22,780 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:33:22,809 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-10-02 10:33:22,811 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:33:22,811 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:33:22,811 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:33:22,812 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:33:22,812 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-10-02 10:33:22,814 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:33:22,816 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:33:22,816 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-10-02 10:33:22,818 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:33:22,820 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:33:22,821 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:33:22,821 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:33:22,821 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2021-10-02 10:33:22,823 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:33:22,823 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:33:22,823 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:33:22,824 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:33:22,824 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:33:22,824 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:33:22,825 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-10-02 10:33:22,825 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... 2021-10-02 10:33:23,324 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:23,327 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:33:23,620 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-10-02 10:33:23,620 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-10-02 10:33:23,620 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:33:23,685 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:33:24,079 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:24,080 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:33:26,910 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:33:27,227 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:27,228 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:33:27,253 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2021-10-02 10:33:27,254 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:33:27,361 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:33:27,902 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:33:27,904 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2021-10-02 10:33:27,947 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:33:28,255 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-10-02 10:33:28,256 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:33:28,280 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:33:28,414 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:33:32,480 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:35,281 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:33:39,435 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:42,362 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:33:46,497 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:49,293 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:33:53,418 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:33:56,246 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 2021-10-02 10:33:56,448 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00001_nrcb5_i2d.fits 2021-10-02 10:33:56,448 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:33:56,448 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-10-02 10:33:56,449 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:33:56,649 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrcb5_cal.fits 2021-10-02 10:33:56,649 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:33:57,902 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:33:57,903 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:33:57,904 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:33:57,905 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:33:57,905 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:33:57,906 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:33:57,907 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:33:57,907 - stpipe - INFO - OS: Linux 2021-10-02 10:33:58,242 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). 2021-10-02 10:33:58,246 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:33:58,373 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:33:58,382 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:33:58,384 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-10-02 10:33:58,385 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:33:58,386 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:33:58,386 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-10-02 10:33:58,388 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:33:58,389 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:33:58,390 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2021-10-02 10:33:58,391 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:33:58,391 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:33:58,392 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:33:58,393 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-10-02 10:33:58,393 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... 2021-10-02 10:33:58,681 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:33:58,682 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:33:58,937 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-10-02 10:33:58,937 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-10-02 10:33:58,937 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:33:58,990 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:33:59,155 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:33:59,156 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:33:59,560 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:33:59,726 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:33:59,727 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:33:59,751 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2021-10-02 10:33:59,752 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-10-02 10:33:59,838 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:33:59,838 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-10-02 10:33:59,838 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:33:59,839 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:33:59,839 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:33:59,888 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:33:59,889 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2021-10-02 10:33:59,919 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:34:00,087 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-10-02 10:34:00,088 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:34:00,112 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:34:00,223 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:34:05,063 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:07,868 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:34:13,066 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:15,905 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:34:21,337 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:24,126 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:34:29,307 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:34:32,119 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 2021-10-02 10:34:32,294 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00002_nrca5_i2d.fits 2021-10-02 10:34:32,294 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:34:32,294 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-10-02 10:34:32,295 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:34:32,489 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrca5_cal.fits 2021-10-02 10:34:32,489 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:34:33,501 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:34:33,502 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:34:33,503 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:34:33,504 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:34:33,505 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:34:33,506 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:34:33,506 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:34:33,506 - stpipe - INFO - OS: Linux 2021-10-02 10:34:33,713 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). 2021-10-02 10:34:33,716 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:34:33,855 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:34:33,866 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:34:33,868 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-10-02 10:34:33,869 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:34:33,870 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:34:33,871 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-10-02 10:34:33,872 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:34:33,873 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:34:33,874 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2021-10-02 10:34:33,875 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:34:33,875 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:34:33,875 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:34:33,876 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:34:33,876 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:34:33,876 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:34:33,877 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-10-02 10:34:33,877 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... 2021-10-02 10:34:34,179 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:34,180 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:34:34,438 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-10-02 10:34:34,438 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-10-02 10:34:34,438 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:34:34,489 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:34:34,650 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:34,651 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:34:34,997 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:34:35,160 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:35,160 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:34:35,185 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2021-10-02 10:34:35,185 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-10-02 10:34:35,270 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:34:35,270 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-10-02 10:34:35,271 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:34:35,271 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:34:35,271 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:34:35,315 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:34:35,317 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2021-10-02 10:34:35,345 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:34:35,506 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-10-02 10:34:35,507 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:34:35,530 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:34:35,638 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:34:40,814 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:34:43,596 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:34:48,700 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:34:51,492 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:34:56,046 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:34:58,829 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:35:03,519 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:35:06,417 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 2021-10-02 10:35:06,595 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00002_nrcb5_i2d.fits 2021-10-02 10:35:06,595 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:35:06,595 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-10-02 10:35:06,596 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:35:06,774 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrcb5_cal.fits 2021-10-02 10:35:06,774 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:35:07,866 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:35:07,867 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:35:07,868 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:35:07,869 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:35:07,870 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:35:07,871 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:35:07,871 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:35:07,871 - stpipe - INFO - OS: Linux 2021-10-02 10:35:08,077 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). 2021-10-02 10:35:08,080 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:35:08,208 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:35:08,217 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-10-02 10:35:08,218 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:35:08,219 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-10-02 10:35:08,220 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:35:08,221 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:35:08,221 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-10-02 10:35:08,223 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:35:08,224 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:35:08,225 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:35:08,227 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:35:08,228 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:35:08,228 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-10-02 10:35:08,228 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... 2021-10-02 10:35:08,520 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:08,521 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:35:08,775 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-10-02 10:35:08,775 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-10-02 10:35:08,775 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:35:08,827 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:35:08,991 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:08,991 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:35:09,325 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:35:09,487 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:09,488 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:35:09,512 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2021-10-02 10:35:09,512 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:35:09,600 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:35:09,647 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:35:09,648 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2021-10-02 10:35:09,677 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:35:09,841 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-10-02 10:35:09,842 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:35:09,865 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:35:09,982 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:35:15,071 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:17,879 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:35:22,877 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:25,690 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:35:30,691 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:33,482 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:35:38,347 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:35:41,176 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 2021-10-02 10:35:41,351 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00003_nrca5_i2d.fits 2021-10-02 10:35:41,351 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:35:41,351 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-10-02 10:35:41,352 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:35:41,529 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrca5_cal.fits 2021-10-02 10:35:41,529 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:35:42,591 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:35:42,592 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:35:42,593 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:35:42,594 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:35:42,594 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:35:42,595 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:35:42,595 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:35:42,596 - stpipe - INFO - OS: Linux 2021-10-02 10:35:42,985 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). 2021-10-02 10:35:42,989 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:35:43,117 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:35:43,130 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-10-02 10:35:43,131 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:35:43,131 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:35:43,131 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:35:43,132 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:35:43,132 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-10-02 10:35:43,133 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:35:43,134 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:35:43,134 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-10-02 10:35:43,135 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-10-02 10:35:43,136 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:35:43,137 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:35:43,138 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-10-02 10:35:43,139 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... 2021-10-02 10:35:43,609 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:43,610 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:35:43,894 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-10-02 10:35:43,894 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-10-02 10:35:43,894 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:35:43,946 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:35:44,290 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:44,291 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:35:44,708 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:35:45,079 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:45,080 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:35:45,106 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2021-10-02 10:35:45,106 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:35:45,222 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:35:45,273 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:35:45,274 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2021-10-02 10:35:45,308 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:35:45,663 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-10-02 10:35:45,664 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:35:45,689 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:35:45,813 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:35:50,391 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:35:53,180 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:35:57,760 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:36:00,575 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:36:05,000 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:36:07,808 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:36:12,740 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2021-10-02 10:36:15,551 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 2021-10-02 10:36:15,735 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00003_nrcb5_i2d.fits 2021-10-02 10:36:15,735 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:36:15,735 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-10-02 10:36:15,736 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:36:15,927 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrcb5_cal.fits 2021-10-02 10:36:15,927 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:36:16,289 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf 2021-10-02 10:36:16,305 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:36:16,608 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:36:16,684 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:36:16,685 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:36:16,686 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:36:16,687 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:36:16,688 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:36:16,689 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:36:16,690 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:36:16,690 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:36:16,690 - stpipe - INFO - OS: Linux 2021-10-02 10:36:16,919 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). 2021-10-02 10:36:16,924 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:36:17,008 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:36:17,012 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:36:17,014 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:36:17,015 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:36:17,016 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:36:17,652 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-10-02 10:36:17,654 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-10-02 10:36:19,573 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. 2021-10-02 10:36:21,444 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. 2021-10-02 10:36:23,304 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. 2021-10-02 10:36:25,132 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. 2021-10-02 10:36:27,401 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. 2021-10-02 10:36:29,730 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. 2021-10-02 10:36:29,787 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:29,787 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-10-02 10:36:29,787 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-10-02 10:36:29,827 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00001_nrc': 2021-10-02 10:36:29,828 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrca5_cal 2021-10-02 10:36:29,828 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrcb5_cal 2021-10-02 10:36:29,869 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00002_nrc': 2021-10-02 10:36:29,869 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrca5_cal 2021-10-02 10:36:29,869 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrcb5_cal 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00003_nrc': 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrca5_cal 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrcb5_cal 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:29,909 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:36:29.909856 2021-10-02 10:36:29,910 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2021-10-02 10:36:29,910 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,056 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image 2021-10-02 10:36:30,059 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. 2021-10-02 10:36:30,264 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-10-02 10:36:30,264 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:36:30,265 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. 2021-10-02 10:36:30,266 - stpipe.Image3Pipeline.tweakreg - INFO - Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... 2021-10-02 10:36:30,266 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:36:30,268 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: 2021-10-02 10:36:30,268 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.175218 FIT MAE: 0.128754 2021-10-02 10:36:30,269 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 95 objects. 2021-10-02 10:36:30,338 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. 2021-10-02 10:36:30,545 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-10-02 10:36:30,545 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-10-02 10:36:30,546 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. 2021-10-02 10:36:30,547 - stpipe.Image3Pipeline.tweakreg - INFO - Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... 2021-10-02 10:36:30,547 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-10-02 10:36:30,549 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: 2021-10-02 10:36:30,549 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 2021-10-02 10:36:30,549 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.185757 FIT MAE: 0.136126 2021-10-02 10:36:30,550 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 87 objects. 2021-10-02 10:36:30,618 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:30,619 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:36:30.618900 2021-10-02 10:36:30,619 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.709044 2021-10-02 10:36:30,619 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-10-02 10:36:31,574 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00001_nrca5_tweakreg.fits 2021-10-02 10:36:32,573 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00001_nrcb5_tweakreg.fits 2021-10-02 10:36:33,476 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00002_nrca5_tweakreg.fits 2021-10-02 10:36:34,472 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00002_nrcb5_tweakreg.fits 2021-10-02 10:36:35,466 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00003_nrca5_tweakreg.fits 2021-10-02 10:36:36,441 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00003_nrcb5_tweakreg.fits 2021-10-02 10:36:36,441 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-10-02 10:36:36,877 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:36:36,879 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:36:37.034022 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:36:37,034 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:36:37,035 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:37,035 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000354205 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000354205 2021-10-02 10:36:40,604 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.000861847 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.000861847 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:40,605 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:36:41,311 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.15121705532532562 [not converted] 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-10-02 10:36:41,312 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:36:41.313088 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.279066 2021-10-02 10:36:41,313 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:36:41,322 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:36:41,509 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:36:41,510 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:36:41,513 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 6 inputs 2021-10-02 10:36:47,116 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:36:54,982 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:04,354 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:13,906 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:23,198 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:32,885 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:37:39,605 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-10-02 10:37:44,741 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-10-02 10:37:49,320 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:37:54,450 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:00,694 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:07,122 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:13,971 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:20,797 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-10-02 10:38:28,069 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits 2021-10-02 10:38:28,980 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits 2021-10-02 10:38:29,750 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits 2021-10-02 10:38:30,532 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits 2021-10-02 10:38:31,406 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits 2021-10-02 10:38:32,086 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits 2021-10-02 10:38:32,086 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:38:33,060 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:38:33,061 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:38:33,083 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:38:33,250 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw42424-o002_t001_nircam_clear-f444w 2021-10-02 10:38:33,858 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:38:37,069 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:38:43,399 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:38:49,992 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:38:56,915 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:03,734 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:10,336 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:13,235 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:39:16,247 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:22,118 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:28,594 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:35,042 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:41,391 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:47,688 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:50,621 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:39:53,421 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:39:59,141 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:05,402 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:11,774 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:18,117 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:24,498 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:27,348 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:40:30,114 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:35,799 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:42,028 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:48,495 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:40:54,720 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:41:01,091 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-10-02 10:41:04,000 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 2021-10-02 10:41:04,837 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits 2021-10-02 10:41:04,837 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:41:05,148 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). 2021-10-02 10:41:05,149 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:41:05,171 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:41:05,180 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:41:05,180 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:41:05,180 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-10-02 10:41:05,181 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F444W 2021-10-02 10:41:05,181 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:41:05,181 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-10-02 10:41:05,225 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 3.24181 2021-10-02 10:41:08,927 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 126 sources -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.3G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.3G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.tweakreg:step.py:367 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:371 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:132 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:134 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00001_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00001_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00002_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00002_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00002_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00003_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00003_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00003_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:170 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:36:29.909856 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-10-02 10:36:29.909856 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175218 FIT MAE: 0.128754 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175218 FIT MAE: 0.128754 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185757 FIT MAE: 0.136126 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185757 FIT MAE: 0.136126 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:36:30.618900 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2021-10-02 10:36:30.618900 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.709044 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.709044 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:470 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:36:37.034022 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:36:37.034022 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000354205 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.000861847 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.15121705532532562 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.15121705532532562 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.151217 (old=0, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151571 (old=0.000354205, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.000861847, delta=0.151217) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:36:41.313088 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:36:41.313088 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.279066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.279066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 6 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 45.6M available system memory 120.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 45.6M available system memory 120.0G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27672425479357 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.27672425479357 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.16565665694313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.16565665694313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.19279386931629 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.19279386931629 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 104677 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 104677 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4171514 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4171514 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15121705532532562 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166035 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166035 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4169768 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4169768 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15157125983454434 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4160562 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4160562 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167952 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167952 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166483 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166483 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 45.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 45.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw42424-o002_t001_nircam_clear-f444w INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw42424-o002_t001_nircam_clear-f444w DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 126 sources | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3[i2d]::setup | 0.00 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog::setup | 0.00 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segm::setup | 0.00 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits'} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture(scope="module") def run_image3pipeline(run_image2pipeline, rtdata_module, jail): """Run calwebb_image3 on NIRCam imaging long data""" rtdata = rtdata_module # Grab rest of _rate files for the asn and run image2 pipeline on each to # produce fresh _cal files for the image3 pipeline. We won't check these # or look at intermediate products, including the resampled i2d rate_files = [ "nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrca5_rate.fits", "nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits", ] for rate_file in rate_files: rtdata.get_data(rate_file) args = ["config/calwebb_image2.cfg", rtdata.input] Step.from_cmdline(args) # Get the level3 assocation json file (though not its members) and run # image3 pipeline on all _cal files listed in association rtdata.get_data("nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json") args = ["config/calwebb_image3.cfg", rtdata.input, "--steps.tweakreg.save_results=True", # "--steps.skymatch.save_results=True", "--steps.source_catalog.snr_threshold=20", ] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:74: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517d22a90> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError | |||
| Error | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile::setup | 5.87 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f85174d6b50> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ut': None, 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} jail = local('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0') @pytest.fixture() def run_image3_closedfile(rtdata, jail): """Run calwebb_image3 on NIRCam imaging with data that had a closed file issue.""" rtdata.get_asn("nircam/image/fail_short_image3_asn.json") collect_pipeline_cfgs("config") args = ["config/calwebb_image3.cfg", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:184: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f85174d6b50> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueError -----------------------------Captured stdout setup------------------------------ ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- -----------------------------Captured stderr setup------------------------------ 2021-10-02 10:41:11,582 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2021-10-02 10:41:11,652 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:41:11,974 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:41:12,056 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:41:12,057 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:41:12,058 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:41:12,059 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:41:12,060 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:41:12,061 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:41:12,062 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:41:12,062 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:41:12,062 - stpipe - INFO - OS: Linux 2021-10-02 10:41:12,340 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2021-10-02 10:41:12,346 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:41:12,438 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:41:12,441 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:41:12,442 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:41:12,443 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:41:12,445 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:41:12,859 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:41:12,860 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:12.877583 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:41:12,877 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,878 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:12.879649 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 2021-10-02 10:41:12,879 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:12,881 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:41:13,119 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:41:13,120 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:41:13,133 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:41:13,240 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2021-10-02 10:41:13,814 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:41:13,878 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,007 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,075 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:41:14,135 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,266 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,335 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:41:14,397 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,530 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,598 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:41:14,659 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,789 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-10-02 10:41:14,866 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 2021-10-02 10:41:15,260 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits 2021-10-02 10:41:15,260 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:41:15,522 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). 2021-10-02 10:41:15,524 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:41:15,539 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:41:15,547 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F090W 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:41:15,548 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: SUB320 2021-10-02 10:41:15,588 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.50412 2021-10-02 10:41:15,689 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1 sources -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:12.877583 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:12.877583 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:12.879649 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:12.879649 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 118.2G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 1 sources | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target | 174.94 | |
|
self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517bb8c10> def set_segment_properties(self): """ Calculate the segment-based source photometry and morphologies. The values are set as dynamic attributes. """ segm_cat = SourceCatalog(self.model.data, self.segment_img, error=self.model.err, kernel=self.kernel, wcs=self.wcs) self._xpeak = segm_cat.maxval_xindex self._ypeak = segm_cat.maxval_yindex # rename some columns in the output catalog prop_names = {} prop_names['isophotal_flux'] = 'segment_flux' prop_names['isophotal_flux_err'] = 'segment_fluxerr' prop_names['isophotal_area'] = 'area' for column in self.segment_colnames: # define the property name prop_name = prop_names.get(column, column) try: > value = getattr(segm_cat, prop_name) E AttributeError: 'SourceCatalog' object has no attribute 'sky_orientation' /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:631: AttributeError During handling of the above exception, another exception occurred: rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...i2d.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["calwebb_image3", rtdata.input] > Step.from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:15: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:173: in from_cmdline return cmdline.step_from_cmdline(args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/cmdline.py:339: in step_from_cmdline step.run(*positional) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/pipeline/calwebb_image3.py:99: in process self.source_catalog(result) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:407: in run step_result = self.process(*args) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog_step.py:109: in process catalog = catobj.catalog /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:1300: in catalog self.set_segment_properties() /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:633: in set_segment_properties value = getattr(self, prop_name) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/decorators.py:767: in __get__ val = self.fget(obj) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <jwst.source_catalog.source_catalog.JWSTSourceCatalog object at 0x7f8517bb8c10> @lazyproperty def sky_orientation(self): """ The orientation of the source major axis as the position angle in degrees measured East of North. """ # NOTE: crpix1 and crpix2 are 1-based values skycoord = self.wcs.pixel_to_world(self.model.meta.wcsinfo.crpix1 - 1, self.model.meta.wcsinfo.crpix2 - 1) > _, angle = _pixel_scale_angle_at_skycoord(skycoord, self.wcs) E ValueError: too many values to unpack (expected 2) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/source_catalog/source_catalog.py:691: ValueErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/posixpath.py:152: TypeError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stdout call------------------------------ ---------------------------------------------------------------------- ERROR RUNNING STEP 'Image3Pipeline': too many values to unpack (expected 2) ---------------------------------------------------------------------- ------------------------------Captured stderr call------------------------------ 2021-10-02 10:41:21,667 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2021-10-02 10:41:21,704 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-10-02 10:41:22,512 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2021-10-02 10:41:22,727 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-10-02 10:41:22,728 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-10-02 10:41:22,729 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-10-02 10:41:22,730 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-10-02 10:41:22,731 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:41:22,732 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:41:22,733 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-10-02 10:41:22,733 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:41:22,733 - stpipe - INFO - OS: Linux 2021-10-02 10:41:23,084 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2021-10-02 10:41:23,090 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-10-02 10:41:23,304 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-10-02 10:41:23,307 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-10-02 10:41:23,308 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-10-02 10:41:23,309 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:41:23,310 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-10-02 10:41:24,446 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2021-10-02 10:41:24,447 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2021-10-02 10:41:24,541 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2021-10-02 10:41:24,899 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-10-02 10:41:24,900 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,964 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:24,965 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,139 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,598 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 2021-10-02 10:41:28,599 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 2021-10-02 10:41:28,599 - stpipe.Image3Pipeline.skymatch - INFO - 2021-10-02 10:41:28,605 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-10-02 10:41:28,890 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:41:28,892 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:41:28,895 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-10-02 10:41:33,878 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:41,941 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:50,070 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:41:58,325 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:03,547 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-10-02 10:42:06,420 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-10-02 10:42:11,619 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:17,612 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:23,465 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:29,206 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-10-02 10:42:33,604 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2021-10-02 10:42:33,785 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2021-10-02 10:42:33,973 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2021-10-02 10:42:34,164 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2021-10-02 10:42:34,164 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:42:34,482 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:42:34,483 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:42:34,502 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:42:34,640 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2021-10-02 10:42:35,218 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:42:38,286 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:44,088 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:49,926 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:55,628 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:42:58,489 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:43:01,431 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:07,120 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:12,777 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:18,388 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:21,220 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:43:24,138 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:29,903 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:35,656 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:41,312 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:44,148 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:43:47,050 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:52,843 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:43:58,601 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:44:04,285 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-10-02 10:44:07,149 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2021-10-02 10:44:07,752 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2021-10-02 10:44:07,752 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-10-02 10:44:08,023 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2021-10-02 10:44:08,024 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-10-02 10:44:08,045 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-10-02 10:44:08,056 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-10-02 10:44:08,097 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2021-10-02 10:44:10,254 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 583 sources -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:783 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf INFO stpipe:step.py:791 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:321 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:321 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:321 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:321 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:321 SourceCatalogStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image3Pipeline:step.py:367 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:371 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:367 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:371 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:470 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:367 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:371 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-10-02 10:41:24.964432 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2021-10-02 10:41:28.598918 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.634486 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:470 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 118.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:928 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 117.0G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 117.0G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:928 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:367 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:371 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 583 sources | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rate] | 16.08 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rate.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f851441e640>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-10-02 10:44:22,371 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf 2021-10-02 10:44:22,385 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2021-10-02 10:44:22,386 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2021-10-02 10:44:22,386 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2021-10-02 10:44:22,387 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2021-10-02 10:44:22,388 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2021-10-02 10:44:22,388 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2021-10-02 10:44:22,389 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2021-10-02 10:44:22,390 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2021-10-02 10:44:22,390 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2021-10-02 10:44:22,391 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2021-10-02 10:44:22,392 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2021-10-02 10:44:22,392 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2021-10-02 10:44:22,393 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2021-10-02 10:44:22,394 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2021-10-02 10:44:22,394 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2021-10-02 10:44:22,395 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2021-10-02 10:44:22,396 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2021-10-02 10:44:22,396 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:44:22,396 - stpipe - INFO - OS: Linux 2021-10-02 10:44:22,736 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). 2021-10-02 10:44:22,751 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} 2021-10-02 10:44:22,881 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2021-10-02 10:44:22,918 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits'. 2021-10-02 10:44:22,920 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits'. 2021-10-02 10:44:22,922 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits'. 2021-10-02 10:44:22,923 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits'. 2021-10-02 10:44:22,924 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0030.fits'. 2021-10-02 10:44:22,926 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2021-10-02 10:44:22,928 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits'. 2021-10-02 10:44:22,930 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits'. 2021-10-02 10:44:22,932 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0002.fits'. 2021-10-02 10:44:22,933 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0004.fits'. 2021-10-02 10:44:22,935 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2021-10-02 10:44:23,257 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:23,258 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:23,293 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed 2021-10-02 10:44:23,293 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2021-10-02 10:44:23,294 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2021-10-02 10:44:23,479 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:23,480 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:23,498 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits 2021-10-02 10:44:24,091 - stpipe.Detector1Pipeline.dq_init - INFO - Extracting mask subarray to match science data 2021-10-02 10:44:24,099 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2021-10-02 10:44:24,291 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:24,292 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:24,310 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits 2021-10-02 10:44:25,100 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,101 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:25,131 - stpipe.Detector1Pipeline.saturation - INFO - Extracting reference file subarray to match science data 2021-10-02 10:44:25,143 - stpipe.Detector1Pipeline.saturation - INFO - Detected 514 saturated pixels 2021-10-02 10:44:25,143 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2021-10-02 10:44:25,146 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2021-10-02 10:44:25,362 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:25,363 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:25,363 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2021-10-02 10:44:25,364 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2021-10-02 10:44:25,550 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:25,551 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:25,570 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits 2021-10-02 10:44:28,471 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:28,513 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2021-10-02 10:44:28,703 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:28,704 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2021-10-02 10:44:28,711 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2021-10-02 10:44:28,712 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2021-10-02 10:44:29,425 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2021-10-02 10:44:29,612 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:29,613 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:29,633 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits 2021-10-02 10:44:31,529 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,530 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:31,561 - stpipe.Detector1Pipeline.linearity - INFO - Extracting linearity subarray to match science data 2021-10-02 10:44:31,591 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2021-10-02 10:44:31,779 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:31,780 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2021-10-02 10:44:32,533 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:33,024 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits 2021-10-02 10:44:33,026 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2021-10-02 10:44:33,234 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:33,235 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} 2021-10-02 10:44:33,255 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits 2021-10-02 10:44:34,228 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:34,228 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:44:34,230 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=5, nframes=1, groupgap=0 2021-10-02 10:44:34,230 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=20, nframes=1, groupgap=0 2021-10-02 10:44:34,268 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2021-10-02 10:44:34,458 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:34,459 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} 2021-10-02 10:44:34,467 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma 2021-10-02 10:44:34,479 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits 2021-10-02 10:44:35,040 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits 2021-10-02 10:44:36,067 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection 2021-10-02 10:44:36,099 - stpipe.Detector1Pipeline.jump - INFO - Extracting gain subarray to match science data 2021-10-02 10:44:36,100 - stpipe.Detector1Pipeline.jump - INFO - Extracting readnoise subarray to match science data 2021-10-02 10:44:36,103 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2021-10-02 10:44:36,109 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2021-10-02 10:44:36,141 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 1727 pixels with at least one CR and at least four groups 2021-10-02 10:44:36,142 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 0 pixels with at least one CR and three groups 2021-10-02 10:44:36,142 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 2 pixels with at least one CR and two groups 2021-10-02 10:44:36,184 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 0.0803099 sec 2021-10-02 10:44:36,185 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 1.717962 2021-10-02 10:44:36,188 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2021-10-02 10:44:36,375 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:36,376 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2021-10-02 10:44:36,405 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits 2021-10-02 10:44:36,423 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits 2021-10-02 10:44:36,452 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2021-10-02 10:44:36,452 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2021-10-02 10:44:36,452 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting gain subarray to match science data 2021-10-02 10:44:36,453 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting readnoise subarray to match science data 2021-10-02 10:44:36,839 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 5 2021-10-02 10:44:36,839 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2021-10-02 10:44:36,898 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2021-10-02 10:44:37,085 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:37,085 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:37,132 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-10-02 10:44:37,132 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-10-02 10:44:37,134 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-10-02 10:44:37,320 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2021-10-02 10:44:37,321 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2021-10-02 10:44:37,368 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-10-02 10:44:37,368 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-10-02 10:44:37,370 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-10-02 10:44:37,440 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rateints.fits 2021-10-02 10:44:37,441 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2021-10-02 10:44:37,502 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rate.fits 2021-10-02 10:44:37,502 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe.Detector1Pipeline:step.py:321 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:321 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:321 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:321 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:321 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:321 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:321 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:321 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:321 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:321 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:321 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:321 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:321 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:321 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:321 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:321 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:321 GainScaleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Detector1Pipeline:step.py:367 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:371 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0030.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0002.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0004.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:367 Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:371 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:49 NFRAMES and FRMDIVSR are equal; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:50 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:470 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:367 Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:371 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0049.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:step.py:470 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:367 Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:371 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0061.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 514 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 514 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:470 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:367 Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:371 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:401 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:470 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:367 Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:371 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0024.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:470 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:367 Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:371 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout INFO stpipe.Detector1Pipeline.refpix:step.py:470 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:367 Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:371 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:23 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0055.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:470 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:367 Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:371 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:928 Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:470 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:367 Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:371 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0176.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=20, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=20, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:470 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:367 Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:371 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:51 CR rejection threshold = 4 sigma DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:57 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:63 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 1727 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 1727 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0803099 sec INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0803099 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:75 The execution time in seconds: 1.717962 INFO stpipe.Detector1Pipeline.jump:step.py:470 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:367 Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:371 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0028.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0055.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 514: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 514: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -34.512970, 0.050270, 644.399109, 3.217029 DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -34.512970, 0.050270, 644.399109, 3.217029 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.382903 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.382903 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:470 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw00617196001_02102_00001_nrca4_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw00617196001_02102_00001_nrca4_rate.fits INFO stpipe.Detector1Pipeline:step.py:470 Step Detector1Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rateints] | 0.29 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rateints.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rateints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rateints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f851771e130>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 | |||
| Skipped | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing | 0.96 | |
|
('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py', 93, 'Skipped: Engineering Database not available.') -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-10-02 10:45:07,689 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits 2021-10-02 10:45:07,760 - stpipe - INFO - Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db 2021-10-02 10:45:07,760 - stpipe - INFO - Updating WCS for aperture NRCA5_GRISM256_F444W 2021-10-02 10:45:07,760 - stpipe - INFO - Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 2021-10-02 10:45:07,761 - stpipe - INFO - loaded 1 table rows 2021-10-02 10:45:07,762 - stpipe - INFO - TSO exposure: 2021-10-02 10:45:07,762 - stpipe - INFO - setting xref_sci to 769.0 2021-10-02 10:45:07,762 - stpipe - INFO - setting yref_sci to 130.0 2021-10-02 10:45:07,763 - stpipe - INFO - Updating wcs from telemetry. 2021-10-02 10:45:07,764 - stpipe - INFO - Determining pointing between observations times (mjd): 2021-10-02 10:45:07,765 - stpipe - INFO - obsstart: 58626.20879027639 obsend: 58626.2095384375 2021-10-02 10:45:07,765 - stpipe - INFO - Telemetry search tolerance: 60 2021-10-02 10:45:07,765 - stpipe - INFO - Reduction function: <function pointing_from_average at 0x7f858dccd790> -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=98.83149583333334, dec=-66.82697777777776, pa=None) DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=98.83149583333334, dec=-66.82697777777776, pa=None) DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: FINEGUIDE DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: FINEGUIDE DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.10297636 -0.12983654 -0.10852731] DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.10297636 -0.12983654 -0.10852731] INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f858dccd790> INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f858dccd790> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 DEBUG stpipe:connectionpool.py:452 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 | |||
| Skipped | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing | 0.46 | |
|
('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py', 81, 'Skipped: Engineering Database not available.') -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-10-02 10:45:22,181 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits 2021-10-02 10:45:22,293 - stpipe - INFO - Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db 2021-10-02 10:45:22,294 - stpipe - INFO - Updating WCS for aperture NRCB1_SUB64P 2021-10-02 10:45:22,294 - stpipe - INFO - Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 2021-10-02 10:45:22,294 - stpipe - INFO - loaded 1 table rows 2021-10-02 10:45:22,297 - stpipe - INFO - Setting basic FITS WCS keywords for imaging 2021-10-02 10:45:22,302 - stpipe - INFO - TSO exposure: 2021-10-02 10:45:22,302 - stpipe - INFO - setting xref_sci to 32.5 2021-10-02 10:45:22,302 - stpipe - INFO - setting yref_sci to 32.5 2021-10-02 10:45:22,303 - stpipe - INFO - Updating wcs from telemetry. 2021-10-02 10:45:22,305 - stpipe - INFO - Determining pointing between observations times (mjd): 2021-10-02 10:45:22,306 - stpipe - INFO - obsstart: 58626.20879027639 obsend: 58626.2095384375 2021-10-02 10:45:22,306 - stpipe - INFO - Telemetry search tolerance: 60 2021-10-02 10:45:22,306 - stpipe - INFO - Reduction function: <function pointing_from_average at 0x7f858dccd790> -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:set_telescope_pointing.py:2523 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:2523 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=None, dec=None, pa=None) DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=None, dec=None, pa=None) DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: COARSE DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: COARSE DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.02882949 -0.04659458 0.01740115] DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.02882949 -0.04659458 0.01740115] INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f858dccd790> INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f858dccd790> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 DEBUG stpipe:connectionpool.py:452 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] | 101.78 | |
|
-----------------------------Captured stderr setup------------------------------ 2021-10-02 10:28:28,503 - stpipe.Coron3Pipeline - INFO - Coron3Pipeline instance created. 2021-10-02 10:28:28,504 - stpipe.Coron3Pipeline.stack_refs - INFO - StackRefsStep instance created. 2021-10-02 10:28:28,505 - stpipe.Coron3Pipeline.align_refs - INFO - AlignRefsStep instance created. 2021-10-02 10:28:28,505 - stpipe.Coron3Pipeline.klip - INFO - KlipStep instance created. 2021-10-02 10:28:28,506 - stpipe.Coron3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:28:28,507 - stpipe.Coron3Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:28:28,507 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:28:28,507 - stpipe - INFO - OS: Linux 2021-10-02 10:28:28,749 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). 2021-10-02 10:28:28,753 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:28:28,753 - stpipe.Coron3Pipeline - INFO - Starting calwebb_coron3 ... 2021-10-02 10:28:28,922 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-10-02 10:28:28,936 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:28:28,938 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-10-02 10:28:29,096 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-10-02 10:28:29,098 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:28:29,099 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-10-02 10:28:29,253 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-10-02 10:28:29,255 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:28:29,256 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-10-02 10:28:29,331 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-10-02 10:28:29,333 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:28:29,334 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-10-02 10:28:29,408 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-10-02 10:28:29,410 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:28:29,411 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-10-02 10:28:30,086 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). 2021-10-02 10:28:30,088 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:28:30,096 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-10-02 10:28:30,794 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-10-02 10:28:32,990 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits 2021-10-02 10:28:32,990 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:28:33,294 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). 2021-10-02 10:28:33,295 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:28:33,304 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-10-02 10:28:34,018 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-10-02 10:28:36,247 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits 2021-10-02 10:28:36,247 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:28:36,589 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). 2021-10-02 10:28:36,591 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:28:36,599 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-10-02 10:28:37,294 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-10-02 10:28:39,461 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits 2021-10-02 10:28:39,461 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:28:39,795 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs running with args (<ModelContainer>,). 2021-10-02 10:28:39,796 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} 2021-10-02 10:28:39,813 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 1 to output stack 2021-10-02 10:28:39,818 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 2 to output stack 2021-10-02 10:28:39,823 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 3 to output stack 2021-10-02 10:28:39,858 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs done 2021-10-02 10:28:39,939 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits 2021-10-02 10:28:40,292 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). 2021-10-02 10:28:40,293 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:28:40,301 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-10-02 10:28:40,453 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-10-02 10:28:40,827 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits 2021-10-02 10:28:40,828 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:28:41,127 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-10-02 10:28:41,128 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-10-02 10:28:41,136 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-10-02 10:28:41,216 - stpipe.Coron3Pipeline.align_refs - WARNING - Median filter returned NaN setting value to 0. 2021-10-02 10:29:19,230 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-10-02 10:29:19,501 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits 2021-10-02 10:29:19,759 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). 2021-10-02 10:29:19,760 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-10-02 10:29:19,768 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-10-02 10:29:20,460 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-10-02 10:29:20,563 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits 2021-10-02 10:29:21,072 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). 2021-10-02 10:29:21,073 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:29:21,087 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-10-02 10:29:21,236 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-10-02 10:29:21,630 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits 2021-10-02 10:29:21,630 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:29:21,888 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-10-02 10:29:21,889 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-10-02 10:29:21,897 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-10-02 10:29:21,972 - stpipe.Coron3Pipeline.align_refs - WARNING - Median filter returned NaN setting value to 0. 2021-10-02 10:30:00,094 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-10-02 10:30:00,337 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits 2021-10-02 10:30:00,675 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). 2021-10-02 10:30:00,676 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-10-02 10:30:00,684 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-10-02 10:30:01,317 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-10-02 10:30:01,444 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits 2021-10-02 10:30:01,961 - stpipe.Coron3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-10-02 10:30:01,963 - stpipe.Coron3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} 2021-10-02 10:30:01,981 - stpipe.Coron3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:30:02,131 - stpipe.Coron3Pipeline.resample - INFO - Resampling science data 2021-10-02 10:30:02,150 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,185 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,220 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,255 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,290 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,325 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,359 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,394 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,429 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,463 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,480 - stpipe.Coron3Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:30:02,499 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,533 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,567 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,601 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,635 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,669 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,705 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,739 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,775 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,810 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,828 - stpipe.Coron3Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:30:02,846 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,881 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,916 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,951 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:02,986 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,021 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,065 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,102 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,136 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,171 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,189 - stpipe.Coron3Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:30:03,207 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,241 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,276 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,310 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,345 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,379 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,415 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,451 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,487 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,523 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-10-02 10:30:03,552 - stpipe.Coron3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 2021-10-02 10:30:03,554 - stpipe.Coron3Pipeline.resample - INFO - Step resample done 2021-10-02 10:30:04,643 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits 2021-10-02 10:30:04,643 - stpipe.Coron3Pipeline - INFO - ...ending calwebb_coron3 2021-10-02 10:30:04,644 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. INFO stpipe.Coron3Pipeline:step.py:321 Coron3Pipeline instance created. INFO stpipe.Coron3Pipeline.stack_refs:step.py:321 StackRefsStep instance created. INFO stpipe.Coron3Pipeline.align_refs:step.py:321 AlignRefsStep instance created. INFO stpipe.Coron3Pipeline.klip:step.py:321 KlipStep instance created. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Coron3Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Coron3Pipeline:step.py:367 Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). INFO stpipe.Coron3Pipeline:step.py:371 Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} INFO stpipe.Coron3Pipeline:calwebb_coron3.py:51 Starting calwebb_coron3 ... DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24958 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24958 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24854 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24854 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24938 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24938 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24935 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24935 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24908 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24908 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24898 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24898 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24947 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24947 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24870 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24870 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24957 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24957 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24859 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24859 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24844 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24844 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24910 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24910 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24848 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24848 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24794 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24794 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24846 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24846 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24945 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24945 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24930 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24930 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24923 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24923 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24921 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24921 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24912 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24912 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24876 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24876 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24948 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24948 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24888 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24888 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.stack_refs:step.py:367 Step stack_refs running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.stack_refs:step.py:371 Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:step.py:470 Step stack_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:367 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:371 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:36 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:470 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:367 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:371 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:470 Step klip done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:367 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:371 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:36 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:470 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:367 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:371 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:470 Step klip done INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:step.py:367 Step resample running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample.py:71 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:71 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:411 Model size 97.5K available system memory 120.0G DEBUG stpipe.Coron3Pipeline.resample:util.py:411 Model size 97.5K available system memory 120.0G DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Coron3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:step.py:470 Step resample done DEBUG stpipe.Coron3Pipeline:calwebb_coron3.py:167 Blending metadata for <ImageModel(158, 158)> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline:step.py:928 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits INFO stpipe.Coron3Pipeline:calwebb_coron3.py:180 ...ending calwebb_coron3 INFO stpipe.Coron3Pipeline:step.py:470 Step Coron3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] | 0.27 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] | 0.38 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] | 3.72 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] | 0.41 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] | 0.26 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] | 0.47 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] | 0.58 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] | 0.38 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] | 0.88 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] | 0.64 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] | 132.42 | |
|
-----------------------------Captured stderr setup------------------------------ 2021-10-02 10:30:16,660 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf 2021-10-02 10:30:16,688 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2021-10-02 10:30:16,689 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2021-10-02 10:30:16,690 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2021-10-02 10:30:16,691 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2021-10-02 10:30:16,692 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2021-10-02 10:30:16,692 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2021-10-02 10:30:16,693 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2021-10-02 10:30:16,694 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2021-10-02 10:30:16,694 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2021-10-02 10:30:16,695 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2021-10-02 10:30:16,696 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2021-10-02 10:30:16,696 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2021-10-02 10:30:16,697 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2021-10-02 10:30:16,698 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2021-10-02 10:30:16,699 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2021-10-02 10:30:16,700 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2021-10-02 10:30:16,700 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2021-10-02 10:30:16,700 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:30:16,701 - stpipe - INFO - OS: Linux 2021-10-02 10:30:17,008 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). 2021-10-02 10:30:17,017 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} 2021-10-02 10:30:17,198 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2021-10-02 10:30:17,219 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. 2021-10-02 10:30:17,221 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2021-10-02 10:30:17,222 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. 2021-10-02 10:30:17,224 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0043.fits'. 2021-10-02 10:30:17,225 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0021.fits'. 2021-10-02 10:30:17,226 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2021-10-02 10:30:17,228 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2021-10-02 10:30:17,228 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2021-10-02 10:30:17,228 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2021-10-02 10:30:17,228 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. 2021-10-02 10:30:17,230 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. 2021-10-02 10:30:17,231 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. 2021-10-02 10:30:17,233 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. 2021-10-02 10:30:17,234 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2021-10-02 10:30:17,784 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2021-10-02 10:30:17,786 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:30:18,075 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed 2021-10-02 10:30:18,075 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2021-10-02 10:30:18,076 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2021-10-02 10:30:18,297 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2021-10-02 10:30:18,298 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:30:18,317 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0043.fits 2021-10-02 10:30:19,815 - stpipe.Detector1Pipeline.dq_init - INFO - Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits 2021-10-02 10:30:19,815 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2021-10-02 10:30:20,170 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). 2021-10-02 10:30:20,172 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:30:20,192 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits 2021-10-02 10:30:20,847 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:20,848 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:20,848 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:20,848 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:20,848 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:21,588 - stpipe.Detector1Pipeline.saturation - INFO - Detected 35212 saturated pixels 2021-10-02 10:30:21,638 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2021-10-02 10:30:22,070 - stpipe.Detector1Pipeline.saturation - INFO - Saved model in jw42424001001_01101_00001_nrca5_saturation.fits 2021-10-02 10:30:22,071 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2021-10-02 10:30:22,459 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2021-10-02 10:30:22,461 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:30:22,461 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2021-10-02 10:30:22,462 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2021-10-02 10:30:22,809 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2021-10-02 10:30:22,810 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:30:22,832 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits 2021-10-02 10:30:23,693 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:24,566 - stpipe.Detector1Pipeline.superbias - INFO - Saved model in jw42424001001_01101_00001_nrca5_superbias.fits 2021-10-02 10:30:24,566 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2021-10-02 10:30:24,883 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). 2021-10-02 10:30:24,885 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2021-10-02 10:30:24,895 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2021-10-02 10:30:24,895 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2021-10-02 10:30:24,895 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2021-10-02 10:30:24,895 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2021-10-02 10:30:24,895 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2021-10-02 10:30:27,996 - stpipe.Detector1Pipeline.refpix - INFO - Saved model in jw42424001001_01101_00001_nrca5_refpix.fits 2021-10-02 10:30:27,996 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2021-10-02 10:30:28,484 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). 2021-10-02 10:30:28,486 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:30:28,511 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits 2021-10-02 10:30:29,506 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:29,507 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:29,507 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:29,507 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:29,508 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:29,508 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:29,508 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:31,175 - stpipe.Detector1Pipeline.linearity - INFO - Saved model in jw42424001001_01101_00001_nrca5_linearity.fits 2021-10-02 10:30:31,176 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2021-10-02 10:30:31,534 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2021-10-02 10:30:31,535 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2021-10-02 10:30:32,383 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:30:37,026 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits 2021-10-02 10:30:37,030 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2021-10-02 10:30:37,562 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2021-10-02 10:30:37,564 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} 2021-10-02 10:30:37,588 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits 2021-10-02 10:31:02,104 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:31:02,105 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-10-02 10:31:02,108 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=7, nframes=1, groupgap=1 2021-10-02 10:31:02,108 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=108, nframes=1, groupgap=0 2021-10-02 10:31:04,226 - stpipe.Detector1Pipeline.dark_current - INFO - Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits 2021-10-02 10:31:04,226 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2021-10-02 10:31:04,762 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). 2021-10-02 10:31:04,764 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} 2021-10-02 10:31:04,773 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 50 sigma 2021-10-02 10:31:04,790 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2021-10-02 10:31:05,926 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2021-10-02 10:31:06,004 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection 2021-10-02 10:31:06,456 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2021-10-02 10:31:06,751 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2021-10-02 10:31:09,739 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 4709 pixels with at least one CR and at least four groups 2021-10-02 10:31:09,740 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 3 pixels with at least one CR and three groups 2021-10-02 10:31:09,740 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 2872 pixels with at least one CR and two groups 2021-10-02 10:31:10,189 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 3.73239 sec 2021-10-02 10:31:10,192 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 5.419520 2021-10-02 10:31:10,654 - stpipe.Detector1Pipeline.jump - INFO - Saved model in jw42424001001_01101_00001_nrca5_jump.fits 2021-10-02 10:31:10,654 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2021-10-02 10:31:11,058 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-10-02 10:31:11,060 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2021-10-02 10:31:11,092 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2021-10-02 10:31:11,116 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2021-10-02 10:31:11,150 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2021-10-02 10:31:11,150 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2021-10-02 10:31:41,341 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 7 2021-10-02 10:31:41,341 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2021-10-02 10:31:41,580 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2021-10-02 10:31:41,986 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-10-02 10:31:41,988 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:31:42,041 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-10-02 10:31:42,041 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-10-02 10:31:42,043 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-10-02 10:31:42,226 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-10-02 10:31:42,227 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-10-02 10:31:42,276 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-10-02 10:31:42,276 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-10-02 10:31:42,278 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-10-02 10:31:42,403 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rateints.fits 2021-10-02 10:31:42,404 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2021-10-02 10:31:42,518 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rate.fits 2021-10-02 10:31:42,519 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done 2021-10-02 10:31:42,599 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:31:42,600 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:31:42,601 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:31:42,602 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:31:42,603 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:31:42,603 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:31:42,604 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:31:42,604 - stpipe - INFO - OS: Linux 2021-10-02 10:31:42,834 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). 2021-10-02 10:31:42,838 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:31:42,869 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:31:42,882 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-10-02 10:31:42,883 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:31:42,884 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:31:42,884 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:31:42,884 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:31:42,884 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-10-02 10:31:42,885 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-10-02 10:31:42,887 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:31:42,887 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-10-02 10:31:42,888 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-10-02 10:31:42,890 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:31:42,890 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:31:42,890 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:31:42,890 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:31:42,891 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:31:42,891 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:31:42,891 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:31:42,891 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2021-10-02 10:31:42,892 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:31:42,892 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:31:42,892 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:31:42,893 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:31:42,893 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:31:42,893 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:31:42,894 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2021-10-02 10:31:42,894 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... 2021-10-02 10:31:43,150 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). 2021-10-02 10:31:43,151 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:31:43,539 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2021-10-02 10:31:43,539 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2021-10-02 10:31:43,539 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:31:43,741 - stpipe.Image2Pipeline.assign_wcs - INFO - Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits 2021-10-02 10:31:43,741 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:31:43,913 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). 2021-10-02 10:31:43,914 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:31:47,039 - stpipe.Image2Pipeline.flat_field - INFO - Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits 2021-10-02 10:31:47,040 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:31:47,215 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2021-10-02 10:31:47,216 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-10-02 10:31:47,242 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2021-10-02 10:31:47,242 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-10-02 10:31:47,334 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:31:47,335 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-10-02 10:31:47,335 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:31:47,335 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:31:47,335 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:31:50,603 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:31:50,605 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2021-10-02 10:31:50,637 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:31:50,799 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2021-10-02 10:31:50,800 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:31:50,823 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-10-02 10:31:50,934 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2021-10-02 10:31:55,392 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:31:58,243 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2021-10-02 10:32:02,791 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:32:05,619 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2021-10-02 10:32:10,157 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:32:12,993 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2021-10-02 10:32:17,540 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-10-02 10:32:20,609 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 2021-10-02 10:32:20,839 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00001_nrca5_i2d.fits 2021-10-02 10:32:20,840 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:32:20,840 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2021-10-02 10:32:20,841 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:32:21,069 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_cal.fits 2021-10-02 10:32:21,069 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe.Detector1Pipeline:step.py:321 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:321 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:321 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:321 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:321 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:321 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:321 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:321 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:321 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:321 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:321 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:321 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:321 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:321 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:321 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:321 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:321 GainScaleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Detector1Pipeline:step.py:367 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:371 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0043.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0021.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:367 Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:371 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:41 NFRAMES=1 is a power of 2; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:42 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:470 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:367 Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:371 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0043.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.dq_init:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits INFO stpipe.Detector1Pipeline.dq_init:step.py:470 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:367 Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:371 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_saturation.fits INFO stpipe.Detector1Pipeline.saturation:step.py:470 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:367 Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:371 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:401 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:470 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:367 Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:371 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_superbias.fits INFO stpipe.Detector1Pipeline.superbias:step.py:470 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:367 Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:371 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_refpix.fits INFO stpipe.Detector1Pipeline.refpix:step.py:470 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:367 Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:371 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:23 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_linearity.fits INFO stpipe.Detector1Pipeline.linearity:step.py:470 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:367 Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:371 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:227 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:227 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:470 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:367 Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:371 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits INFO stpipe.Detector1Pipeline.dark_current:step.py:470 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:367 Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:371 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:51 CR rejection threshold = 50 sigma DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:57 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:63 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 32704 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 32704 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 4709 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 4709 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 3 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 3 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2872 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2872 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 3.73239 sec INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 3.73239 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:75 The execution time in seconds: 5.419520 INFO stpipe.Detector1Pipeline.jump:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_jump.fits INFO stpipe.Detector1Pipeline.jump:step.py:470 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:367 Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:371 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=6 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=6 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1310 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1310 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -169.330429, 0.389915, 1648.302368, 3.281085 DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -169.330429, 0.389915, 1648.302368, 3.281085 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 2048 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 30.052743 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 30.052743 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:470 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:367 Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:371 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:470 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_rate.fits INFO stpipe.Detector1Pipeline:step.py:470 Step Detector1Pipeline done DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.2G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw42424001001_01101_00001_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] | 5.68 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] | 4.68 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] | 6.29 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] | 6.63 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] | 1.22 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] | 5.03 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] | 5.69 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] | 1.81 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] | 2.35 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] | 1.83 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] | 2.59 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120211200 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs | 9.43 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] | 3.87 | |
|
-------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-10-02 10:44:12,770 - stpipe - INFO - Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.61945196759 to 58738.620943194444 -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:461 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.61945196759 to 58738.620943194444 INFO stpipe:set_telescope_pointing.py:461 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.61945196759 to 58738.620943194444 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] | 3.57 | |
|
-------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-10-02 10:44:16,274 - stpipe - INFO - Moving target position table not found in the file -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:465 Moving target position table not found in the file INFO stpipe:set_telescope_pointing.py:465 Moving target position table not found in the file DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] | 3.58 | |
|
-------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-10-02 10:44:20,099 - stpipe - INFO - Moving target RA and Dec updated. -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:468 Moving target RA and Dec updated. INFO stpipe:set_telescope_pointing.py:468 Moving target RA and Dec updated. DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83963520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83963520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83963520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83963520 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[trapsfilled] | 1.33 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] | 24.47 | |
|
-----------------------------Captured stderr setup------------------------------ 2021-10-02 10:44:40,719 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf 2021-10-02 10:44:40,741 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2021-10-02 10:44:40,742 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:44:40,743 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:44:40,744 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2021-10-02 10:44:40,745 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2021-10-02 10:44:40,745 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2021-10-02 10:44:40,748 - stpipe.Spec2Pipeline.master_background - INFO - MasterBackgroundNrsSlitsStep instance created. 2021-10-02 10:44:40,749 - stpipe.Spec2Pipeline.master_background.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:44:40,749 - stpipe.Spec2Pipeline.master_background.pathloss - INFO - PathLossStep instance created. 2021-10-02 10:44:40,750 - stpipe.Spec2Pipeline.master_background.barshadow - INFO - BarShadowStep instance created. 2021-10-02 10:44:40,751 - stpipe.Spec2Pipeline.master_background.photom - INFO - PhotomStep instance created. 2021-10-02 10:44:40,751 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2021-10-02 10:44:40,752 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:44:40,753 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2021-10-02 10:44:40,753 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2021-10-02 10:44:40,754 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2021-10-02 10:44:40,755 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2021-10-02 10:44:40,756 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2021-10-02 10:44:40,756 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:44:40,757 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2021-10-02 10:44:40,758 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2021-10-02 10:44:40,759 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-10-02 10:44:40,759 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:44:40,760 - stpipe - INFO - OS: Linux 2021-10-02 10:44:41,155 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). 2021-10-02 10:44:41,168 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} 2021-10-02 10:44:41,227 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] 2021-10-02 10:44:41,242 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2021-10-02 10:44:41,242 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2021-10-02 10:44:41,242 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:44:41,242 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:44:41,242 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:44:41,242 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:44:41,242 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-10-02 10:44:41,244 - stpipe.Spec2Pipeline - INFO - Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. 2021-10-02 10:44:41,244 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:44:41,244 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-10-02 10:44:41,245 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. 2021-10-02 10:44:41,246 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:44:41,247 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits'. 2021-10-02 10:44:41,248 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:44:41,248 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:44:41,248 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. 2021-10-02 10:44:41,249 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2021-10-02 10:44:41,250 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. 2021-10-02 10:44:41,251 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2021-10-02 10:44:41,251 - stpipe.Spec2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-10-02 10:44:41,251 - stpipe.Spec2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... 2021-10-02 10:44:41,711 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-10-02 10:44:41,713 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:44:42,125 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:44:42,131 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:44:42,549 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-10-02 10:44:42,550 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None} 2021-10-02 10:44:42,551 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2021-10-02 10:44:42,552 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2021-10-02 10:44:42,957 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-10-02 10:44:42,958 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-10-02 10:44:42,959 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2021-10-02 10:44:42,960 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2021-10-02 10:44:43,353 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-10-02 10:44:43,354 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-10-02 10:44:43,354 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2021-10-02 10:44:43,355 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2021-10-02 10:44:43,762 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-10-02 10:44:43,764 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:44:46,914 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-10-02 10:44:47,098 - stpipe.Spec2Pipeline.flat_field - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits 2021-10-02 10:44:47,098 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:44:47,327 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). 2021-10-02 10:44:47,328 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} 2021-10-02 10:44:47,347 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NRC_TSGRISM 2021-10-02 10:44:47,347 - stpipe.Spec2Pipeline.extract_2d - INFO - Setting extraction height to 64 2021-10-02 10:44:47,370 - stpipe.Spec2Pipeline.extract_2d - INFO - Using default order extraction from reference file 2021-10-02 10:44:47,370 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting order: [1] 2021-10-02 10:44:47,469 - stpipe.Spec2Pipeline.extract_2d - INFO - WCS made explicit for order: 1 2021-10-02 10:44:47,470 - stpipe.Spec2Pipeline.extract_2d - INFO - Spectral trace extents: (xmin: 711, ymin: 0), (xmax: 1909, ymax: 63) 2021-10-02 10:44:47,470 - stpipe.Spec2Pipeline.extract_2d - INFO - Extraction limits: (xmin: 0, ymin: 0), (xmax: 2047, ymax: 63) 2021-10-02 10:44:47,557 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extraction 2021-10-02 10:44:47,696 - stpipe.Spec2Pipeline.extract_2d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits 2021-10-02 10:44:47,696 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2021-10-02 10:44:47,892 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). 2021-10-02 10:44:47,893 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-10-02 10:44:47,948 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NRC_TSGRISM 2021-10-02 10:44:47,948 - stpipe.Spec2Pipeline.srctype - INFO - Input SRCTYAPT = None 2021-10-02 10:44:47,948 - stpipe.Spec2Pipeline.srctype - WARNING - SRCTYAPT keyword not found in input; using SRCTYPE instead 2021-10-02 10:44:47,948 - stpipe.Spec2Pipeline.srctype - INFO - Input is a TSO exposure; setting SRCTYPE = POINT 2021-10-02 10:44:48,087 - stpipe.Spec2Pipeline.srctype - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits 2021-10-02 10:44:48,087 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2021-10-02 10:44:48,281 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-10-02 10:44:48,282 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} 2021-10-02 10:44:48,282 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2021-10-02 10:44:48,283 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2021-10-02 10:44:48,467 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-10-02 10:44:48,468 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-10-02 10:44:48,468 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2021-10-02 10:44:48,469 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2021-10-02 10:44:48,655 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-10-02 10:44:48,656 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-10-02 10:44:48,656 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2021-10-02 10:44:48,657 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2021-10-02 10:44:48,840 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-10-02 10:44:48,841 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-10-02 10:44:48,841 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2021-10-02 10:44:48,842 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2021-10-02 10:44:49,027 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-10-02 10:44:49,028 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-10-02 10:44:49,200 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits 2021-10-02 10:44:49,200 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2021-10-02 10:44:49,325 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:44:49,325 - stpipe.Spec2Pipeline.photom - INFO - detector: NRCALONG 2021-10-02 10:44:49,325 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NRC_TSGRISM 2021-10-02 10:44:49,325 - stpipe.Spec2Pipeline.photom - INFO - filter: F444W 2021-10-02 10:44:49,325 - stpipe.Spec2Pipeline.photom - INFO - pupil: GRISMR 2021-10-02 10:44:49,445 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 697.721 2021-10-02 10:44:49,458 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2021-10-02 10:44:49,662 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-10-02 10:44:49,663 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2021-10-02 10:44:49,718 - stpipe.Spec2Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2021-10-02 10:44:49,774 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2021-10-02 10:44:49,774 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR will NOT be applied 2021-10-02 10:44:49,802 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing spectral order 1 2021-10-02 10:44:49,802 - stpipe.Spec2Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2021-10-02 10:44:49,805 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: 2021-10-02 10:44:49,806 - stpipe.Spec2Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2021-10-02 10:44:49,806 - stpipe.Spec2Pipeline.extract_1d - INFO - with background subtraction 2021-10-02 10:44:55,090 - stpipe.Spec2Pipeline.extract_1d - INFO - All 2 integrations done 2021-10-02 10:44:55,208 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits 2021-10-02 10:44:55,208 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2021-10-02 10:44:55,208 - stpipe.Spec2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-10-02 10:44:55,208 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2021-10-02 10:44:55,366 - stpipe.Spec2Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits 2021-10-02 10:44:55,366 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2021-10-02 10:44:55,736 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf 2021-10-02 10:44:55,744 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} 2021-10-02 10:44:56,126 - CRDS - ERROR - Error determining best reference for 'pars-whitelightstep' = parameter='META.INSTRUMENT.PUPIL [PUPIL]' value='GRISMR' is not in ['CLEAR'] 2021-10-02 10:44:56,249 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2021-10-02 10:44:56,250 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:44:56,251 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2021-10-02 10:44:56,252 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-10-02 10:44:56,253 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2021-10-02 10:44:56,253 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:44:56,253 - stpipe - INFO - OS: Linux 2021-10-02 10:44:56,480 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). 2021-10-02 10:44:56,483 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2021-10-02 10:44:56,614 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] 2021-10-02 10:44:56,618 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2021-10-02 10:44:56,619 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2021-10-02 10:44:56,621 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2021-10-02 10:44:56,857 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-10-02 10:44:57,053 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:44:57,054 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:44:57,057 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 2 inputs 2021-10-02 10:44:57,119 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 2 images 2021-10-02 10:44:57,308 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:44:57,309 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2021-10-02 10:44:57,455 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits 2021-10-02 10:44:57,468 - stpipe.Tso3Pipeline - INFO - Extracting 1-D spectra ... 2021-10-02 10:44:57,667 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-10-02 10:44:57,668 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2021-10-02 10:44:57,727 - stpipe.Tso3Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2021-10-02 10:44:57,784 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2021-10-02 10:44:57,784 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR will NOT be applied 2021-10-02 10:44:57,804 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing spectral order 1 2021-10-02 10:44:57,804 - stpipe.Tso3Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2021-10-02 10:44:57,807 - stpipe.Tso3Pipeline.extract_1d - INFO - Using extraction limits: 2021-10-02 10:44:57,807 - stpipe.Tso3Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2021-10-02 10:44:57,807 - stpipe.Tso3Pipeline.extract_1d - INFO - with background subtraction 2021-10-02 10:45:03,151 - stpipe.Tso3Pipeline.extract_1d - INFO - All 2 integrations done 2021-10-02 10:45:03,158 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d done 2021-10-02 10:45:03,166 - stpipe.Tso3Pipeline - INFO - Performing white-light photometry ... 2021-10-02 10:45:03,550 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-10-02 10:45:03,551 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} 2021-10-02 10:45:03,559 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light done 2021-10-02 10:45:03,667 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits 2021-10-02 10:45:03,667 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv 2021-10-02 10:45:03,671 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe.Spec2Pipeline:step.py:321 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:321 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:321 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:321 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background:step.py:321 MasterBackgroundNrsSlitsStep instance created. INFO stpipe.Spec2Pipeline.master_background.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background.pathloss:step.py:321 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background.barshadow:step.py:321 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background.photom:step.py:321 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:321 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:321 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:321 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:321 FringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:321 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:321 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:321 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:321 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:321 Extract1dStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Spec2Pipeline:step.py:367 Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:371 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Spec2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:88 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:106 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:172 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:352 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:367 Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:371 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:470 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:367 Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:371 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:470 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:367 Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:371 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:470 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:367 Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSGRISM DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.flat_field:step.py:928 Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits INFO stpipe.Spec2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Spec2Pipeline.extract_2d:step.py:367 Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:371 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:87 Setting extraction height to 64 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:87 Setting extraction height to 64 DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:100 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:100 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:120 Extracting order: [1] INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:120 Extracting order: [1] DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:208 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:208 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:209 Spectral trace extents: (xmin: 711, ymin: 0), (xmax: 1909, ymax: 63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:209 Spectral trace extents: (xmin: 711, ymin: 0), (xmax: 1909, ymax: 63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 Extraction limits: (xmin: 0, ymin: 0), (xmax: 2047, ymax: 63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 Extraction limits: (xmin: 0, ymin: 0), (xmax: 2047, ymax: 63) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:247 Computing wavelengths (this takes a while ...) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:247 Computing wavelengths (this takes a while ...) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:266 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:266 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:step.py:928 Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits INFO stpipe.Spec2Pipeline.extract_2d:step.py:470 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:367 Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:371 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:58 Input SRCTYAPT = None INFO stpipe.Spec2Pipeline.srctype:srctype.py:58 Input SRCTYAPT = None WARNING stpipe.Spec2Pipeline.srctype:srctype.py:60 SRCTYAPT keyword not found in input; using SRCTYPE instead WARNING stpipe.Spec2Pipeline.srctype:srctype.py:60 SRCTYAPT keyword not found in input; using SRCTYPE instead INFO stpipe.Spec2Pipeline.srctype:srctype.py:79 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:79 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:step.py:928 Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits INFO stpipe.Spec2Pipeline.srctype:step.py:470 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:367 Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:371 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} INFO stpipe.Spec2Pipeline.straylight:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:470 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:367 Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:371 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.fringe:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:470 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:367 Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:371 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:470 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:367 Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:371 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:401 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:470 Step barshadow done INFO stpipe.Spec2Pipeline.photom:step.py:367 Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:33 Input is SlitModel DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:53 Using area reference file: N/A DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:143 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:143 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:147 pupil: GRISMR INFO stpipe.Spec2Pipeline.photom:photom.py:147 pupil: GRISMR DEBUG stpipe.Spec2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Spec2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Spec2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Spec2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Spec2Pipeline.photom:photom.py:714 PHOTMJSR value: 697.721 INFO stpipe.Spec2Pipeline.photom:photom.py:714 PHOTMJSR value: 697.721 INFO stpipe.Spec2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:367 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:371 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:120 Input is a SlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:259 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:264 APCORR reference file name is "N/A" INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:265 APCORR will NOT be applied DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4028 with background subtraction INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4028 with background subtraction DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3511 All 2 integrations done INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3511 All 2 integrations done DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Spec2Pipeline.extract_1d:step.py:928 Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:470 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:291 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:134 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:step.py:928 Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits INFO stpipe.Spec2Pipeline:step.py:470 Step Spec2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:step.py:783 PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf INFO stpipe:step.py:791 PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. INFO stpipe.Tso3Pipeline:step.py:321 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:321 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:321 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:321 WhiteLightStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Tso3Pipeline:step.py:367 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:371 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:57 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:97 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 2 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131068 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131068 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131063 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131063 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:117 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:928 Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:160 Extracting 1-D spectra ... INFO stpipe.Tso3Pipeline.extract_1d:step.py:367 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.extract_1d:step.py:371 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:120 Input is a SlitModel INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:259 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:264 APCORR reference file name is "N/A" INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:265 APCORR will NOT be applied DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4028 with background subtraction INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4028 with background subtraction DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3511 All 2 integrations done INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3511 All 2 integrations done DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Tso3Pipeline.extract_1d:step.py:470 Step extract_1d done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:165 Performing white-light photometry ... INFO stpipe.Tso3Pipeline.white_light:step.py:367 Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.white_light:step.py:371 Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. INFO stpipe.Tso3Pipeline.white_light:step.py:470 Step white_light done INFO stpipe.Tso3Pipeline:step.py:928 Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits INFO stpipe.Tso3Pipeline:calwebb_tso3.py:183 Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv INFO stpipe.Tso3Pipeline:step.py:470 Step Tso3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] | 0.28 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] | 0.84 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] | 0.45 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] | 0.52 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] | 0.21 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints | 0.23 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt | 0.23 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] | 13.20 | |
|
-----------------------------Captured stderr setup------------------------------ 2021-10-02 10:45:08,239 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf 2021-10-02 10:45:08,274 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:45:08,275 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:45:08,276 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:45:08,277 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:45:08,281 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:45:08,281 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:45:08,282 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:45:08,282 - stpipe - INFO - OS: Linux 2021-10-02 10:45:08,701 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). 2021-10-02 10:45:08,706 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:45:08,755 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-10-02 10:45:08,771 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-10-02 10:45:08,772 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:45:08,772 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:45:08,772 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:45:08,772 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:45:08,773 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-10-02 10:45:08,774 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:45:08,774 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-10-02 10:45:08,775 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-10-02 10:45:08,776 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:45:08,776 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:45:08,777 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:45:08,777 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:45:08,777 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:45:08,777 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:45:08,777 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:45:08,777 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. 2021-10-02 10:45:08,778 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:45:08,778 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:45:08,778 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:45:08,778 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:45:08,778 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:45:08,779 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-10-02 10:45:08,779 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... 2021-10-02 10:45:09,242 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-10-02 10:45:09,243 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:45:09,524 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-10-02 10:45:09,524 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-10-02 10:45:09,524 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:45:09,558 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:45:09,977 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-10-02 10:45:09,978 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:45:12,489 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-10-02 10:45:12,502 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:45:12,930 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-10-02 10:45:12,932 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-10-02 10:45:12,962 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits 2021-10-02 10:45:12,963 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-10-02 10:45:13,024 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:45:13,024 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-10-02 10:45:13,024 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-10-02 10:45:13,024 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-10-02 10:45:13,024 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:45:13,780 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:45:13,783 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.97369 2021-10-02 10:45:13,790 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:45:13,791 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-10-02 10:45:13,791 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:45:13,916 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits 2021-10-02 10:45:13,917 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:45:14,159 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf 2021-10-02 10:45:14,170 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:45:14,171 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:45:14,172 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:45:14,173 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:45:14,173 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:45:14,174 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:45:14,174 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:45:14,174 - stpipe - INFO - OS: Linux 2021-10-02 10:45:14,404 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). 2021-10-02 10:45:14,407 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:45:14,453 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-10-02 10:45:14,457 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-10-02 10:45:14,458 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:45:14,458 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:45:14,458 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:45:14,458 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:45:14,458 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-10-02 10:45:14,459 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:45:14,459 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-10-02 10:45:14,459 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-10-02 10:45:14,460 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:45:14,460 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:45:14,460 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:45:14,460 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:45:14,460 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:45:14,461 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:45:14,462 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2021-10-02 10:45:14,462 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... 2021-10-02 10:45:14,693 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-10-02 10:45:14,694 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:45:14,942 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-10-02 10:45:14,942 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-10-02 10:45:14,943 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:45:14,975 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:45:15,169 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-10-02 10:45:15,170 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:45:15,375 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-10-02 10:45:15,388 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:45:15,577 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-10-02 10:45:15,578 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-10-02 10:45:15,606 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits 2021-10-02 10:45:15,606 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-10-02 10:45:15,663 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:45:15,663 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-10-02 10:45:15,664 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-10-02 10:45:15,664 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-10-02 10:45:15,664 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-10-02 10:45:15,708 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:45:15,710 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.97369 2021-10-02 10:45:15,715 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:45:15,715 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2021-10-02 10:45:15,716 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:45:15,837 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits 2021-10-02 10:45:15,837 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:45:16,148 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf 2021-10-02 10:45:16,155 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} 2021-10-02 10:45:16,458 - CRDS - ERROR - Error determining best reference for 'pars-whitelightstep' = parameter='META.EXPOSURE.TYPE [EXP_TYPE]' value='NRC_TSIMAGE' is not in ['NRC_TSGRISM'] 2021-10-02 10:45:16,559 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2021-10-02 10:45:16,560 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-10-02 10:45:16,561 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2021-10-02 10:45:16,562 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-10-02 10:45:16,562 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2021-10-02 10:45:16,562 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:45:16,562 - stpipe - INFO - OS: Linux 2021-10-02 10:45:16,982 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). 2021-10-02 10:45:16,986 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2021-10-02 10:45:17,102 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] 2021-10-02 10:45:17,147 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. 2021-10-02 10:45:17,148 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. 2021-10-02 10:45:17,150 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2021-10-02 10:45:17,540 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-10-02 10:45:17,955 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:45:17,957 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:45:17,960 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-10-02 10:45:18,006 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-10-02 10:45:18,228 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:45:18,396 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-10-02 10:45:18,838 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-10-02 10:45:18,839 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-10-02 10:45:18,843 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-10-02 10:45:18,889 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-10-02 10:45:19,113 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-10-02 10:45:19,113 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2021-10-02 10:45:19,237 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits 2021-10-02 10:45:19,363 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits 2021-10-02 10:45:19,819 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). 2021-10-02 10:45:19,820 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2021-10-02 10:45:19,895 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2021-10-02 10:45:20,317 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). 2021-10-02 10:45:20,318 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2021-10-02 10:45:20,353 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2021-10-02 10:45:20,355 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv 2021-10-02 10:45:20,364 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:step.py:783 PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf INFO stpipe:step.py:791 PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. INFO stpipe.Tso3Pipeline:step.py:321 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:321 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:321 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:321 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:321 WhiteLightStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Tso3Pipeline:step.py:367 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:371 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:57 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:97 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:470 Step outlier_detection done DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:97 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:367 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:371 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:470 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:117 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:928 Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline:step.py:928 Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline.tso_photometry:step.py:367 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:371 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:470 Step tso_photometry done INFO stpipe.Tso3Pipeline.tso_photometry:step.py:367 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:371 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:470 Step tso_photometry done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:183 Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv INFO stpipe.Tso3Pipeline:step.py:470 Step Tso3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] | 0.68 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot | 0.13 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nicam_wfsimage_noextras | 24.69 | |
|
-----------------------------Captured stderr setup------------------------------ 2021-10-02 10:45:25,473 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf 2021-10-02 10:45:25,502 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-10-02 10:45:25,503 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-10-02 10:45:25,504 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-10-02 10:45:25,505 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-10-02 10:45:25,506 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-10-02 10:45:25,507 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-10-02 10:45:25,507 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:45:25,507 - stpipe - INFO - OS: Linux 2021-10-02 10:45:25,949 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). 2021-10-02 10:45:25,953 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-10-02 10:45:26,127 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-10-02 10:45:26,141 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. 2021-10-02 10:45:26,142 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-10-02 10:45:26,142 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-10-02 10:45:26,142 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-10-02 10:45:26,143 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-10-02 10:45:26,143 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. 2021-10-02 10:45:26,144 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-10-02 10:45:26,144 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. 2021-10-02 10:45:26,145 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. 2021-10-02 10:45:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-10-02 10:45:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-10-02 10:45:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-10-02 10:45:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-10-02 10:45:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-10-02 10:45:26,147 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-10-02 10:45:26,148 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-10-02 10:45:26,148 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits'. 2021-10-02 10:45:26,149 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-10-02 10:45:26,149 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-10-02 10:45:26,149 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-10-02 10:45:26,149 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-10-02 10:45:26,150 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-10-02 10:45:26,150 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-10-02 10:45:26,162 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00001_nrca4 2021-10-02 10:45:26,163 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00001_nrca4_rate.fits ... 2021-10-02 10:45:26,710 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-10-02 10:45:26,712 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:45:26,925 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-10-02 10:45:27,018 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2021-10-02 10:45:27,019 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2021-10-02 10:45:27,019 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:45:27,083 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:45:27,325 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-10-02 10:45:27,326 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:45:28,449 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:45:28,644 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-10-02 10:45:28,645 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-10-02 10:45:28,670 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits 2021-10-02 10:45:28,670 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-10-02 10:45:28,762 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:45:28,763 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-10-02 10:45:28,763 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:45:28,763 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-10-02 10:45:28,763 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-10-02 10:45:29,394 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:45:29,396 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 38.4903 2021-10-02 10:45:29,428 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:45:29,630 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-10-02 10:45:29,631 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:45:29,631 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-10-02 10:45:29,632 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:45:29,632 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00001_nrca4 2021-10-02 10:45:29,633 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00002_nrca4 2021-10-02 10:45:29,633 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00002_nrca4_rate.fits ... 2021-10-02 10:45:29,985 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-10-02 10:45:29,986 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-10-02 10:45:30,179 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-10-02 10:45:30,263 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2021-10-02 10:45:30,263 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2021-10-02 10:45:30,263 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-10-02 10:45:30,319 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-10-02 10:45:30,529 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-10-02 10:45:30,530 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-10-02 10:45:30,939 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-10-02 10:45:31,197 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-10-02 10:45:31,198 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-10-02 10:45:31,227 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits 2021-10-02 10:45:31,227 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-10-02 10:45:31,327 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-10-02 10:45:31,327 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-10-02 10:45:31,327 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-10-02 10:45:31,327 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-10-02 10:45:31,327 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-10-02 10:45:31,374 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-10-02 10:45:31,375 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 38.4903 2021-10-02 10:45:31,406 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-10-02 10:45:31,660 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-10-02 10:45:31,662 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-10-02 10:45:31,662 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-10-02 10:45:31,663 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-10-02 10:45:31,664 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00002_nrca4 2021-10-02 10:45:31,665 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-10-02 10:45:31,940 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00001_nrca4_cal.fits 2021-10-02 10:45:32,151 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00002_nrca4_cal.fits 2021-10-02 10:45:32,152 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-10-02 10:45:32,584 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-10-02 10:45:32,584 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:45:32,584 - stpipe - INFO - OS: Linux 2021-10-02 10:45:32,820 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). 2021-10-02 10:45:32,821 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} 2021-10-02 10:45:32,831 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json 2021-10-02 10:45:32,831 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-10-02 10:45:32,994 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 2021-10-02 10:45:32,994 - stpipe.WfsCombine - INFO - do_refine: False 2021-10-02 10:45:32,994 - stpipe.WfsCombine - INFO - flip_dithers: True 2021-10-02 10:45:33,000 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: -3.04 -2.05 2021-10-02 10:45:33,162 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-10-02 10:45:33,162 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-10-02 10:45:33,338 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: 3.13 2.05 2021-10-02 10:45:33,338 - stpipe.WfsCombine - INFO - x,y offset in integer pixels from WCS: 3 2 2021-10-02 10:45:33,945 - stpipe.WfsCombine - INFO - Final x, y offset in pixels: 3 2 2021-10-02 10:45:34,132 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits 2021-10-02 10:45:34,134 - stpipe.WfsCombine - INFO - Step WfsCombine done 2021-10-02 10:45:34,506 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-10-02 10:45:34,506 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-10-02 10:45:34,506 - stpipe - INFO - OS: Linux 2021-10-02 10:45:34,958 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). 2021-10-02 10:45:34,959 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} 2021-10-02 10:45:34,969 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json 2021-10-02 10:45:34,969 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-10-02 10:45:35,132 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine 2021-10-02 10:45:35,132 - stpipe.WfsCombine - INFO - do_refine: True 2021-10-02 10:45:35,132 - stpipe.WfsCombine - INFO - flip_dithers: True 2021-10-02 10:45:35,138 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: -3.04 -2.05 2021-10-02 10:45:35,303 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-10-02 10:45:35,304 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-10-02 10:45:35,531 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: 3.13 2.05 2021-10-02 10:45:35,532 - stpipe.WfsCombine - INFO - x,y offset in integer pixels from WCS: 3 2 2021-10-02 10:45:36,019 - stpipe.WfsCombine - INFO - Approximate centroid of image 1 PSF has x,y : 1700 1713 2021-10-02 10:45:46,189 - stpipe.WfsCombine - INFO - From the refined offsets calculation,the x,y changes in ofsets are: -8.01 -2.01 2021-10-02 10:45:46,818 - stpipe.WfsCombine - INFO - Final x, y offset in pixels: -5 0 2021-10-02 10:45:47,004 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits 2021-10-02 10:45:47,005 - stpipe.WfsCombine - INFO - Step WfsCombine done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe.Image2Pipeline:step.py:321 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:321 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:321 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:321 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:321 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:321 ResampleStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.Image2Pipeline:step.py:367 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). INFO stpipe.Image2Pipeline:step.py:371 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00001_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00002_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:367 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:371 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:470 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:367 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:371 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:470 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:367 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:371 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:step.py:470 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:367 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:371 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:401 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:470 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:928 Saved model in jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:470 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:321 WfsCombineStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.WfsCombine:step.py:367 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). INFO stpipe.WfsCombine:step.py:371 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} INFO stpipe.WfsCombine:wfs_combine_step.py:32 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:33 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: 3 2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:928 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits INFO stpipe.WfsCombine:step.py:470 Step WfsCombine done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:321 WfsCombineStep instance created. INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:295 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe:cmdline.py:296 OS: Linux INFO stpipe.WfsCombine:step.py:367 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). INFO stpipe.WfsCombine:step.py:371 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} INFO stpipe.WfsCombine:wfs_combine_step.py:32 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:33 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:191 Approximate centroid of image 1 PSF has x,y : 1700 1713 INFO stpipe.WfsCombine:wfs_combine.py:191 Approximate centroid of image 1 PSF has x,y : 1700 1713 INFO stpipe.WfsCombine:wfs_combine.py:217 From the refined offsets calculation,the x,y changes in ofsets are: -8.01 -2.01 INFO stpipe.WfsCombine:wfs_combine.py:217 From the refined offsets calculation,the x,y changes in ofsets are: -8.01 -2.01 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: -5 0 INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: -5 0 DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:928 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits INFO stpipe.WfsCombine:step.py:470 Step WfsCombine done | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] | 2.76 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] | 2.26 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] | 1.20 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] | 1.47 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 | |||